From 25aa30398a784646e4081a56c5792f3dd60ffec2 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 20 Jul 2020 00:09:31 +0300 Subject: [PATCH] fixed consistancy in readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 878a3b6..96023c5 100644 --- a/readme.md +++ b/readme.md @@ -99,7 +99,7 @@ Returns true if `value` is an array and all of it's items match the assertion. ```js is.array(value) // validate `value` is an array -is.array(value, is.number) // validate that value is an array and all of it's items are numbers. +is.array(value, is.number) // validate `value` is an array and all of it's items are numbers. ``` ##### .function(value)