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.
This commit is contained in:
Cameron Burkholder
2018-10-27 14:42:49 -04:00
committed by Huyen Nguyen
parent dd2df85e77
commit 5dd5038105

View File

@ -4,7 +4,7 @@ title: Logical Operators
# 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 ( && ) #### Logical AND ( && )