fixed consistancy in readme.md

This commit is contained in:
Alex 2020-07-20 00:09:31 +03:00
parent d22dcb11aa
commit 25aa30398a

View file

@ -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)