From dc8db7a50d24e8cfc007ef676f79d81558a72c56 Mon Sep 17 00:00:00 2001 From: Raheel Khan Date: Sun, 31 Oct 2021 23:53:08 +0500 Subject: [PATCH] fix typos in ReadMe file --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f8babeb..06ea795 100755 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ # Iodine -Iodine.js is a micro client-side validation library. It has no dependencies and can be used in isolation or as part of a framework. Iodine also supports chainable rules, allowing you to verify that a piece of data satisifies multiple criteria. +Iodine.js is a micro client-side validation library. It has no dependencies and can be used in isolation or as part of a framework. Iodine also supports chainable rules, allowing you to verify that a piece of data satisfies multiple criteria. ## Installation @@ -224,11 +224,11 @@ The following validation rules are available: | isMaxLength(limit) | Verify that the item's character length does not exceed the given limit | isMinLength(limit) | Verify that the item's character length is not under the given limit | isMax(limit) | Verify that the item's numerical value does not exceed the given limit -| isMin(limit) | Verify that the item's numberical value is not under the given limit +| isMin(limit) | Verify that the item's numerical value is not under the given limit | isNotIn(array) | Verify that the item is not within the given `array` | isNumeric | Verify that the item is `number` or a numeric `string` | isOptional | Allow for optional values (only for use with multiple checks) -| isRegexMatch(exp) | Verify that the item satisifies the given regular expression +| isRegexMatch(exp) | Verify that the item satisfies the given regular expression | isRequired | Verify that the item is not `null`, `undefined` or an empty `string` | isSame(value) | Verify that the item is the same as the supplied value (uses loose compare) | isStartingWith(value) | Verify that the item starts with the given value