From e11e7804b8c68e77d8aefb9b3421b24b1525aa36 Mon Sep 17 00:00:00 2001 From: Alex Hughes Date: Mon, 17 Jul 2017 12:02:57 -0400 Subject: [PATCH] Fixed typo - changed 'most of time' to 'most of the time --- 1-js/02-first-steps/11-logical-operators/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/11-logical-operators/article.md b/1-js/02-first-steps/11-logical-operators/article.md index 293164ad..33c90764 100644 --- a/1-js/02-first-steps/11-logical-operators/article.md +++ b/1-js/02-first-steps/11-logical-operators/article.md @@ -41,7 +41,7 @@ if (1 || 0) { // works just like if( true || false ) } ``` -Most of time, OR `||` is used in `if` to test if *any* of given conditions is correct. +Most of the time, OR `||` is used in `if` to test if *any* of given conditions is correct. For example: