Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialJeremy Lyles
3,886 PointsAm I missing something on this challenge?
I've tried to match the instructions as close as possible, and the editor isn't returning errors on what's being output. Am I missing anything here?
struct Tag {
let name: String
}
struct Post {
let title: String
let author: String
let tag: Tag
func description() -> String {
return "\(title) by \(author). Filed under \(tag)."
}
}
let firstPost = Post(title: "iOS Development", author: "Apple", tag: Tag(name: "swift"))
let postDescription = firstPost.description()
1 Answer
andren
28,558 PointsYour code is extremely close, but you are indeed missing one thing. Well technically two things but the second issue is more about the challenge checker being spectacularly picky, rather than an issue with your code.
In your description string:
"\(title) by \(author). Filed under \(tag)."
You reference the tag
variable, but that contains the Tag
struct itself, not just the name property. In order to actually pull out the name property from the struct you need to use dot notation like this tag.name
.
You also have a period at the end of the description, this is an issue since the example string the challenge showed you does not end with a period. As mentioned the challenge checker really can be extremely picky at times.
If you fix those two issues like this:
struct Tag {
let name: String
}
struct Post {
let title: String
let author: String
let tag: Tag
func description() -> String {
return "\(title) by \(author). Filed under \(tag.name)"
}
}
let firstPost = Post(title: "iOS Development", author: "Apple", tag: Tag(name: "swift"))
let postDescription = firstPost.description()
Then your code will pass.