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.