Skip to content
This repository was archived by the owner on Jul 1, 2020. It is now read-only.

Commit 085d1ac

Browse files
committed
typo
1 parent 492d106 commit 085d1ac

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

readme.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -204,25 +204,25 @@ All validators are written as `snake_case` but it's up to the user's taste and c
204204
* `between_date_us_short:d1,d2` alias of `date_us_short_between`.
205205
* `credit_card` Valid credit card number (AMEX, VISA, Mastercard, Diner's Club, Discover, JCB)
206206
* `date_iso` Ensure date follows the ISO format (yyyy-mm-dd)
207-
* `date_iso_between:d1,d2` Ensure date follows the ISO format and is between (d1) and (d2)
208-
* `date_iso_max:d` Ensure date follows ISO format and is lower or equal then date (d)
209-
* `date_iso_min:d` Ensure date follows ISO format and is higher or equal then date (d)
210-
* `date_euro_long` Ensure date follows the European long format (dd-mm-yyyy) or (dd/mm/yyyy)
211-
* `date_euro_long_between:d1,d2` Ensure date follows the European long format and is between (d1) and (d2)
212-
* `date_euro_long_max:d` Ensure date follows European long format and is lower or equal then date (d)
213-
* `date_euro_long_min:d` Ensure date follows European long format and is higher or equal then date (d)
214-
* `date_euro_short` Ensure date follows the European short format (dd-mm-yy) or (dd/mm/yy)
215-
* `date_euro_short_between:d1,d2` Ensure date follows the European short format and is between (d1) and (d2)
216-
* `date_euro_short_max:d` Ensure date follows European short format and is lower or equal then date (d)
217-
* `date_euro_short_min:d` Ensure date follows European short format and is higher or equal then date (d)
218-
* `date_us_long` Ensure date follows the US long format (mm-dd-yyyy) or (mm/dd/yyyy)
219-
* `date_us_long_between:d1,d2` Ensure date follows the US long format and is between (d1) and (d2)
220-
* `date_us_long_max:d` Ensure date follows US long format and is lower or equal then date (d)
221-
* `date_us_long_min:d` Ensure date follows US long format and is higher or equal then date (d)
222-
* `date_us_short` Ensure date follows the US short format (mm-dd-yy) or (mm/dd/yy)
223-
* `date_us_short_between:d1,d2` Ensure date follows the US short format and is between (d1) and (d2)
224-
* `date_us_short_max:d` Ensure date follows US short format and is lower or equal then date (d)
225-
* `date_us_short_min:d` Ensure date follows US short format and is higher or equal then date (d)
207+
* `date_iso_between:d1,d2` Ensure date follows the ISO format and is between (d1) & (d2)
208+
* `date_iso_max:d` Date must follow ISO format and is lower or equal than date (d)
209+
* `date_iso_min:d` Date must follow ISO format and is higher or equal than date (d)
210+
* `date_euro_long` Date must follow the European long format (dd-mm-yyyy) or (dd/mm/yyyy)
211+
* `date_euro_long_between:d1,d2` Date must follow European long format and is between (d1) & (d2)
212+
* `date_euro_long_max:d` Date must follow European long format and is lower or equal than date (d)
213+
* `date_euro_long_min:d` Date must follow European long format and is higher or equal than date (d)
214+
* `date_euro_short` Date must follow the European short format (dd-mm-yy) or (dd/mm/yy)
215+
* `date_euro_short_between:d1,d2` Date must follow the European short format and is between (d1) & (d2)
216+
* `date_euro_short_max:d` Date must follow European short format and is lower or equal than date (d)
217+
* `date_euro_short_min:d` Date must follow European short format and is higher or equal than date (d)
218+
* `date_us_long` Date must follow the US long format (mm-dd-yyyy) or (mm/dd/yyyy)
219+
* `date_us_long_between:d1,d2` Date must follow the US long format and is between (d1) & (d2)
220+
* `date_us_long_max:d` Date must follow US long format and is lower or equal than date (d)
221+
* `date_us_long_min:d` Date must follow US long format and is higher or equal than date (d)
222+
* `date_us_short` Date must follow the US short format (mm-dd-yy) or (mm/dd/yy)
223+
* `date_us_short_between:d1,d2` Date must follow the US short format and is between (d1) & (d2)
224+
* `date_us_short_max:d` Date must follow US short format and is lower or equal than date (d)
225+
* `date_us_short_min:d` Date must follow US short format and is higher or equal than date (d)
226226
* `email` Checks for a valid email address
227227
* `exact_len:n` Ensures that field length precisely matches the specified length (n).
228228
* `float` Only a positive floating point value (integer are excluded)
@@ -304,4 +304,4 @@ License
304304
* [1.3.5](https://github.com/ghiscoding/angular-validation/commit/679b24ca4daee8419731c45d1d65d63cb5ca74a5) `2015-01-26` Throw an error message when user did not provide a `name=""` property inside the element to validate.
305305
* [1.3.6](https://github.com/ghiscoding/angular-validation/commit/e47e91f45f93a3f191ab6849d06163563674e9e2) `2015-02-09` Added `ng-strict-di` for minification, renamed some files and folder lib to `/vendors`, moved directive into new `/src` folder for better separation.
306306
* [1.3.7](https://github.com/ghiscoding/angular-validation/commit/86c16f720d6687d3b5ca93e49a0a37824027e583) `2015-03-08` Complete rewrite (but same functionality) so that I could add an Angular-Validation Service which is similar implementation as the Directive. Also added `debounce` attribute which is an alias to `typingLimit`, validation rules are now defined as an external service for better maintainability and also created a common file for shared functions by both Validation Directive and Service.
307-
* [1.3.8]() `2015-03-15` Added between/min/max conditional validators on all Date types (ISO, EURO_LONG, EURO_SHORT, US_LONG, US_SHORT)
307+
* [1.3.8](https://github.com/ghiscoding/angular-validation/commit/492d1060a91fb8b49fc70a0c7a1a581d904e0db0) `2015-03-15` Added between/min/max conditional validators on all Date types (ISO, EURO_LONG, EURO_SHORT, US_LONG, US_SHORT)

0 commit comments

Comments
 (0)