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 trialVas Pon
655 Pointsmistake in the task
there is a mistake: you ask me to call title: iOS Development, but then to make the return like "iOSDevelopment by Apple. Field under swift" How can I do this?
struct Tag {
let name: String
}
struct Post {
let title: String
let author: String
let tag: Tag
func description() -> String {
return "\(title) by \(author). Field under \(tag.name)"
}
}
let firstPost = Post(title: "iOSDevelopment", author: "Apple", tag: Tag.init(name:"swift"))
let postDescription = firstPost.description()
1 Answer
andren
28,558 PointsThe sentence they give as an example is just meant to be an example of the sentence structure, you don't need to use the exact same title/author/tag name as long as the words around them are correct. You are right that there is a spacing mistake in the example sentence, it doesn't affect the task though. The problem with your code is that you misspelled the word "Filed" as "Field" if you correct that like this:
func description() -> String {
return "\(title) by \(author). Filed under \(tag.name)"
}
Then you will be able to pass the challenge.