diff --git a/source/chapter2/21_Protocols.md b/source/chapter2/21_Protocols.md index e1173fce..8cd9fd7f 100755 --- a/source/chapter2/21_Protocols.md +++ b/source/chapter2/21_Protocols.md @@ -62,7 +62,7 @@ class SomeClass: SomeSuperClass, FirstProtocol, AnotherProtocol { ```swift protocol SomeProtocol { - var musBeSettable : Int { get set } + var mustBeSettable : Int { get set } var doesNotNeedToBeSettable: Int { get } } ```