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 Functions in Swift Functions in Swift Recap: Functions

Ruben Corvalan
Ruben Corvalan
782 Points

Simple 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?

functions.swift
// Enter your code below
func temperatureInFarenheit (temperature: Double)->Double {
    return temperature
}

3 Answers

Check your spelling :]

Olivier Vanbiervliet
Olivier Vanbiervliet
11,464 Points

The function name contains a typo, it should be temperatureInFa*h*renheit

Ruben Corvalan
Ruben Corvalan
782 Points

Thanks so much.

That was a stupid mistake!

You guys are very patient!