From 4858aaa062c2629a1b08c5603a885c181e1831e1 Mon Sep 17 00:00:00 2001 From: Alexander Date: Thu, 28 Sep 2017 01:18:05 +0300 Subject: [PATCH] Typo --- 1-js/04-object-basics/05-object-toprimitive/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/04-object-basics/05-object-toprimitive/article.md b/1-js/04-object-basics/05-object-toprimitive/article.md index 943fd022..2bb32700 100644 --- a/1-js/04-object-basics/05-object-toprimitive/article.md +++ b/1-js/04-object-basics/05-object-toprimitive/article.md @@ -213,7 +213,7 @@ For instance: ```smart header="Historical notes" For historical reasons, methods `toString` or `valueOf` *should* return a primitive: if any of them returns an object, then there's no error, but that object is ignored (like if the method didn't exist). -In contrast, `Symbol.toPrimitive` *must* return an primitive, otherwise there will be an error. +In contrast, `Symbol.toPrimitive` *must* return a primitive, otherwise, there will be an error. ``` ## Summary