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 92d4f66d..f6b715ce 100644 --- a/1-js/04-object-basics/05-object-toprimitive/article.md +++ b/1-js/04-object-basics/05-object-toprimitive/article.md @@ -199,7 +199,7 @@ In contrast, `Symbol.toPrimitive` *must* return a primitive, otherwise there wil ## Further conversions -As we know already, many operators and functions perform type conversions, e.g. multiplication `*` converts operatnds to numbers. +As we know already, many operators and functions perform type conversions, e.g. multiplication `*` converts operands to numbers. If we pass an object as an argument, then there are two stages: 1. The object is converted to a primitive (using the rules described above).