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 trial

iOS Swift 2.0 Functions Functions in Swift 2.0 Recap: Functions

Aaresh Jalnawalla
Aaresh Jalnawalla
2,363 Points

Cant 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.

functions.swift
// Enter your code below

func temperatureInFarenheit(temperature: Double) -> Double {
    return(temperature)

}

2 Answers

Taylor Amsler
Taylor Amsler
4,427 Points

Very close, but you've got a tiny misspelling. Try "Fahreneheit". Note the first "h". Happens to me all the time. :)

Aaresh Jalnawalla
Aaresh Jalnawalla
2,363 Points

Thanks Taylor. I went crazy finding my fault!