From 074151aadf6c30d2dbdceb5e95816b95e044b4fc Mon Sep 17 00:00:00 2001 From: AGCB Date: Mon, 5 Jun 2017 21:56:40 -0700 Subject: [PATCH] two typos --- 1-js/02-first-steps/06-type-conversions/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/06-type-conversions/article.md b/1-js/02-first-steps/06-type-conversions/article.md index 25a4fd96..71e357ca 100644 --- a/1-js/02-first-steps/06-type-conversions/article.md +++ b/1-js/02-first-steps/06-type-conversions/article.md @@ -93,7 +93,7 @@ alert( 1 + '2' ); // '12' (string to the right) alert( '1' + 2 ); // '12' (string to the left) ``` -That only happens when one of arguments is a string. Otherwise values are converted to numbers. +That only happens when one of the arguments is a string. Otherwise, values are converted to numbers. ```` ## ToBoolean