diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comparisons-with-the-logical-or-operator.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comparisons-with-the-logical-or-operator.english.md index 4aeb5099cb..c7f1f2a64c 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comparisons-with-the-logical-or-operator.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comparisons-with-the-logical-or-operator.english.md @@ -9,7 +9,7 @@ forumTopicId: 16800 ## Description
The logical or operator (||) returns true if either of the operands is true. Otherwise, it returns false. -The logical or operator is composed of two pipe symbols (|). This can typically be found between your Backspace and Enter keys. +The logical or operator is composed of two pipe symbols: (||). This can typically be found between your Backspace and Enter keys. The pattern below should look familiar from prior waypoints: ```js