From fc1a923dd5f705a3bd82e1864b3fdac240a36d3a Mon Sep 17 00:00:00 2001 From: Marco Valero <43689503+ValeroM@users.noreply.github.com> Date: Sat, 16 Nov 2019 21:30:52 -0500 Subject: [PATCH] Made description of logical operator under "or operator" challenge a little more intuitive. (#37772) * Update comparisons-with-the-logical-or-operator.english.md * Update comparisons-with-the-logical-or-operator.english.md * Update comparisons-with-the-logical-or-operator.english.md --- .../comparisons-with-the-logical-or-operator.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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