From b78fa50cf86d7ae03517712a5ef71447504d75de Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Thu, 8 Mar 2018 09:51:57 -0600 Subject: [PATCH] Fix a typo --- javascript/custom-type-checking-error-messages-with-yup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/custom-type-checking-error-messages-with-yup.md b/javascript/custom-type-checking-error-messages-with-yup.md index 706bb46..787ddd3 100644 --- a/javascript/custom-type-checking-error-messages-with-yup.md +++ b/javascript/custom-type-checking-error-messages-with-yup.md @@ -10,7 +10,7 @@ const numSchema = yup.number(); ``` If we use this schema to validate something that isn't a number, Yup will -provide a lengthy default message. Here is what we get if I validate against +provide a lengthy default message. Here is what we get if we validate against `'hey'`: > this must be a `number` type, but the final value was: `NaN` (cast from