From 5dd50381051a7fb08b8f3343731d0a46e4f14acd Mon Sep 17 00:00:00 2001 From: Cameron Burkholder Date: Sat, 27 Oct 2018 14:42:49 -0400 Subject: [PATCH] Fix inappropriate sentence punctuation (#20286) Replaced the hyphen in the introductory sentence with a colon. The hyphen likely intended to function as an m-dash (---) break. --- guide/english/javascript/logical-operators/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/javascript/logical-operators/index.md b/guide/english/javascript/logical-operators/index.md index 9b4d73e0b3..96fc45628b 100644 --- a/guide/english/javascript/logical-operators/index.md +++ b/guide/english/javascript/logical-operators/index.md @@ -4,7 +4,7 @@ title: Logical Operators # Logical Operators -Logical operators compare Boolean values and return a Boolean response. There are two types of logical operators - Logical AND, and Logical OR. These operators are often written as && for AND, and || for OR. +Logical operators compare Boolean values and return a Boolean response. There are two types of logical operators: Logical AND, and Logical OR. These operators are often written as && for AND, and || for OR. #### Logical AND ( && )