From fb344a75878b693755a76f45cad5f7f95f8ee466 Mon Sep 17 00:00:00 2001 From: Aleksandr Kiliushin Date: Thu, 13 Oct 2022 21:24:11 +0400 Subject: [PATCH] fix a typo in bool type description --- lib/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/index.d.ts b/lib/index.d.ts index c38ac611..2c0d0c9d 100644 --- a/lib/index.d.ts +++ b/lib/index.d.ts @@ -2053,7 +2053,7 @@ declare namespace Joi { array(): ArraySchema; /** - * Generates a schema object that matches a boolean data type (as well as the strings 'true', 'false', 'yes', and 'no'). Can also be called via bool(). + * Generates a schema object that matches a boolean data type (as well as the strings 'true', 'false', 'yes', and 'no'). Can also be called via boolean(). */ bool(): BooleanSchema;