From c89d75fd278ee6ae1800ab58578f131190ee0bff Mon Sep 17 00:00:00 2001 From: Ovidiu Voicu Date: Sat, 1 Apr 2017 03:03:02 +0300 Subject: [PATCH] Correct misspelling --- 1-js/02-first-steps/07-operators/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/07-operators/article.md b/1-js/02-first-steps/07-operators/article.md index f285dcfa..6f5684e6 100644 --- a/1-js/02-first-steps/07-operators/article.md +++ b/1-js/02-first-steps/07-operators/article.md @@ -56,7 +56,7 @@ See, it doesn't matter whether the first operand is a string or the second one. The string concatenation and conversion is the special feature of the binary plus `"+"`. Other arithmetic operators work only with numbers. They always convert their operands to numbers. -For instance, substraction and division: +For instance, subtraction and division: ```js run alert( 2 - '1' ); // 1