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 trialAaresh Jalnawalla
2,363 PointsCant finish the first challenge
The following code does not work. I don't know where I'm going wrong with it. Typing it in Xcode doesn't show me any errors.
// Enter your code below
func temperatureInFarenheit(temperature: Double) -> Double {
return(temperature)
}
2 Answers
Taylor Amsler
4,427 PointsVery close, but you've got a tiny misspelling. Try "Fahreneheit". Note the first "h". Happens to me all the time. :)
Aaresh Jalnawalla
2,363 PointsThanks Taylor. I went crazy finding my fault!