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 trialBrice Foster
2,225 PointsThe compiler keeps trying to say return a string but I believe I am returning a string and can't figure out the source
I am putting a string together within a init method and its keeps giving me an error saying that I am not return a string. I have ran the code in Xcode and it works fine.
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 tag = Tag(name: "Science Fiction")
let firstPost = Post(title: "Dune", author: "Frank Herbert", tag: tag)
let postDescription = firstPost.description()
3 Answers
jcorum
71,830 PointsBrice, interesting case! What the compiler doesn't like is the lack of spaces in the function return.
You have:
func description()->String{
return "\(title) by \(author). Filed under \(tag.name)"
}
This works:
func description() -> String {
return "\(title) by \(author). Filed under \(tag.name)"
}
P.S., your version works in Xcode.
jcorum
71,830 PointsAlways.
Brice Foster
2,225 Points:-) thank you
Brice Foster
2,225 PointsBrice Foster
2,225 PointsHo Jcorum, Thank you for taking the time to help. Did you try running the code in the code challenge?