We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5913d04 commit 323e077Copy full SHA for 323e077
README.markdown
@@ -168,7 +168,7 @@ class Euro : Currency {
168
}
169
170
171
-class UnitedStatedDolar : Currency {
+class UnitedStatesDolar : Currency {
172
func symbol() -> String {
173
return "$"
174
@@ -188,7 +188,7 @@ class CurrencyFactory {
188
case .Spain, .France :
189
return Euro()
190
case .UnitedStates :
191
- return UnitedStatedDolar()
+ return UnitedStatesDolar()
192
default:
193
return nil
194
0 commit comments