From b890e7d9d186cfdf39b01bc1f8686317a07cc3d5 Mon Sep 17 00:00:00 2001 From: Norman <33293995+Bemerauld@users.noreply.github.com> Date: Sun, 5 Nov 2017 15:13:52 +0200 Subject: [PATCH] Typo --- 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 b3aecc3119..48715b169d 100644 --- a/1-js/02-first-steps/11-logical-operators/article.md +++ b/1-js/02-first-steps/11-logical-operators/article.md @@ -68,7 +68,7 @@ if (hour < 10 || hour > 18 || isWeekend) { ## OR seeks the first truthy value -The logic described above is somewhat classical. Now let's bring in the "extra" features of JavaScipt. +The logic described above is somewhat classical. Now let's bring in the "extra" features of JavaScript. The extended algorithm works as follows.