Skip to content

Commit

Permalink
Fixed spelling mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanhimmelman committed Dec 28, 2015
1 parent 4e9e9ff commit c7be04a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -63,15 +63,15 @@ class User: Mappable {
}

struct Temperature: Mappable {
var celcius: Double?
var celsius: Double?
var fahrenheit: Double?

init?(_ map: Map) {

}

mutating func mapping(map: Map) {
celcius <- map["celcius"]
celsius <- map["celsius"]
fahrenheit <- map["fahrenheit"]
}
}
Expand Down

0 comments on commit c7be04a

Please sign in to comment.