Update README.md

Format change.
This commit is contained in:
David Patterson 2016-03-13 16:40:46 -05:00
parent a63b811d62
commit 9ce05d370f
1 changed files with 2 additions and 3 deletions

View File

@ -127,9 +127,6 @@ func textFieldShouldReturn(textField: UITextField) -> Bool {
}
```
## Documentation
Checkout the docs <a href="http://jpotts18.github.io/SwiftValidator/">here</a>.
## Custom Validation
We will create a ```SSNRule``` class to show how to create your own Validation. A United States Social Security Number (or SSN) is a field that consists of XXX-XX-XXXX.
@ -148,6 +145,8 @@ class SSNVRule: RegexRule {
}
```
## Documentation
Checkout the docs <a href="http://jpotts18.github.io/SwiftValidator/">here</a>.
Credits