diff --git a/RxExample/RxExample/Examples/SimpleValidation/SimpleValidationViewController.swift b/RxExample/RxExample/Examples/SimpleValidation/SimpleValidationViewController.swift index d4931404..cb4b3a9f 100644 --- a/RxExample/RxExample/Examples/SimpleValidation/SimpleValidationViewController.swift +++ b/RxExample/RxExample/Examples/SimpleValidation/SimpleValidationViewController.swift @@ -30,7 +30,7 @@ class SimpleValidationViewController : ViewController { super.viewDidLoad() usernameValidOutlet.text = "Username has to be at least \(minimalUsernameLength) characters" - passwordValidOutlet.text = "Username has to be at least \(minimalPasswordLength) characters" + passwordValidOutlet.text = "Password has to be at least \(minimalPasswordLength) characters" let usernameValid = usernameOutlet.rx_text .map { $0.characters.count >= minimalUsernameLength }