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 trialNicholas Kennedy
14,015 PointsLooking for solution, Compiles in Xcode...
Bummer! Make sure you're declaring an instance method named description that returns a String
struct Tag {
let name: String
}
struct Post {
let title: String
let author: String
let tag: Tag
func description () -> String {
//"iOSDevelopment by Apple. Filed under swift"
return "\(title) by \(author). Filed under \(tag.name)"
}
}
let firstPost = Post(title: "TheBest", author: "The Guy", tag: Tag(name: "Your"))
let postDescription = firstPost.description()
print(postDescription)
1 Answer
Greg Kaleka
39,021 PointsHi Nicholas,
The problem is simply that you have an extra space in your method definition. It should be description()
rather than description ()
.
Happy coding!