[gardening] Use "{let,var} c: C" instead of "{let,var} c : C"

Inspired by @gribozavr:s fix in 1ad666742e
This commit is contained in:
practicalswift
2016-07-01 23:14:08 +02:00
parent 1ad666742e
commit 5d1af107a3
32 changed files with 98 additions and 98 deletions

View File

@@ -153,7 +153,7 @@ class Box<T : Hashable where T : Equatable> : Hashable {
value = v
}
var hashValue : Int {
var hashValue: Int {
return value.hashValue
}
}