From a4048a8a02479e0253cc0e5b868c4086a056750b Mon Sep 17 00:00:00 2001 From: Syed Shahbaz Ahmed Date: Mon, 17 Apr 2017 18:13:28 +0200 Subject: [PATCH] fixed typos --- 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 6a615944..e2204a24 100644 --- a/1-js/02-first-steps/07-operators/article.md +++ b/1-js/02-first-steps/07-operators/article.md @@ -347,7 +347,7 @@ counter++; ## Bitwise operators -Bitwise operators treat arguments as 32-bit interger numbers and work on the level on their binary representation. +Bitwise operators treat arguments as 32-bit integer numbers and work on the level of their binary representation. These operators are not JavaScript-specific. They are supported in most programming languages.