From fad018d0f18170818fc707878a306ecb2faa2741 Mon Sep 17 00:00:00 2001 From: calloc134 <115209243+calloc134@users.noreply.github.com> Date: Wed, 12 Apr 2023 14:46:49 +0900 Subject: [PATCH 1/2] fix typo on README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d9e1c1230..336884f68 100644 --- a/README.md +++ b/README.md @@ -298,7 +298,7 @@ class User { } const fromPlainUser = { - unkownProp: 'hello there', + unknownProp: 'hello there', firstName: 'Umed', lastName: 'Khudoiberdiev', }; From 1118ff2b859f17bb5a89c35c7754bb881b9af626 Mon Sep 17 00:00:00 2001 From: calloc134 <115209243+calloc134@users.noreply.github.com> Date: Wed, 12 Apr 2023 14:56:00 +0900 Subject: [PATCH 2/2] Fix typo on README.md '2 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 336884f68..7c8456fcb 100644 --- a/README.md +++ b/README.md @@ -306,7 +306,7 @@ const fromPlainUser = { console.log(plainToClass(User, fromPlainUser)); // User { -// unkownProp: 'hello there', +// unknownProp: 'hello there', // firstName: 'Umed', // lastName: 'Khudoiberdiev', // } @@ -325,7 +325,7 @@ class User { } const fromPlainUser = { - unkownProp: 'hello there', + unknownProp: 'hello there', firstName: 'Umed', lastName: 'Khudoiberdiev', };