From 73f3efdfd9f0ce2dd2c1f83fe7a69e2ee8730aa8 Mon Sep 17 00:00:00 2001 From: dnalborczyk Date: Mon, 20 Aug 2018 20:01:31 -0400 Subject: [PATCH] Update API.md --- API.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/API.md b/API.md index 94ff819da..4da9687d5 100644 --- a/API.md +++ b/API.md @@ -1862,7 +1862,7 @@ schema.validate('12345', (err, value) => { }); #### `string.insensitive()` -Allows the value to match any whitelist of blacklist item in a case insensitive comparison. +Allows the value to match any whitelist or blacklist item in a case insensitive comparison. ```js const schema = Joi.string().valid('a').insensitive();