diff --git a/CHANGELOG.md b/CHANGELOG.md index abe9030..e0486b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. ## [Unreleased] -- Update GitHub Action Confguration +- Update GitHub Action Configuration - Added in Pull Request [#7](https://github.com/space-code/validator/pull/7). - Add `Swift Compatibility` & `Platform Compatibility` badges - Added in Pull Request [#6](https://github.com/space-code/validator/pull/6). diff --git a/README.md b/README.md index 4ee9d94..4297393 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@
- + @@ -69,7 +69,7 @@ class ViewController: UIViewController { textField.add(rule: LengthValidationRule(max: 10, error: "error text")) /// Enables automatic validation on input change. textField.validateOnInputChange(isEnabled: true) - /// Handels validation result. + /// Handle the validation result. textField.validationHandler = { result in switch result { case .valid: @@ -182,7 +182,7 @@ struct ContentView: View { if value { print("The form's fields are valid") } else { - print("The form's fileds aren't valid") + print("The form's fields aren't valid") } } )