From 8db7d3f8a2e16450e94797e0688cc44bc0b31e14 Mon Sep 17 00:00:00 2001 From: Eunice Park <28845173+eunicode@users.noreply.github.com> Date: Fri, 6 May 2022 14:34:00 -0700 Subject: [PATCH] fix(docs): correct typo "coarce" to "coerce" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 669bde85c..47f98c975 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Use a schema to coerce or "cast" an input value into the correct type, and optio transform that value into more concrete and specific values, without making further assertions. ```ts -// Attempts to coarce values to the correct type +// Attempts to coerce values to the correct type const parsedUser = userSchema.cast({ name: 'jimmy', age: '24',