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 trialRuben Corvalan
782 PointsSimple Function Question
With the following code, the checker is returning the following error comment:
Bummer! Make sure you're declaring a function named temperatureInFahrenheit.
I have indeed declared the correct function name. I also copy and pasted this result to Xcode and it works with no problem.
Why the checker is indicating an error?
// Enter your code below
func temperatureInFarenheit (temperature: Double)->Double {
return temperature
}
3 Answers
Joe Beltramo
Courses Plus Student 22,191 PointsCheck your spelling :]
Olivier Vanbiervliet
11,464 PointsThe function name contains a typo, it should be temperatureInFa*h*renheit
Ruben Corvalan
782 PointsThanks so much.
That was a stupid mistake!
You guys are very patient!