From 3a7c7fc13ee2a77e070873f6dde9d70e6344f426 Mon Sep 17 00:00:00 2001 From: Kaveet Laxmidas Date: Sat, 8 Apr 2017 12:23:22 -0500 Subject: [PATCH] Clarify description of OR operator (#35) The current description of the OR operator ("one of the statements is true") implies that only one of the statements in the expression can be true, as in an XOR. Adding "at least" to clarify. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4211813..6844713 100644 --- a/README.md +++ b/README.md @@ -1010,7 +1010,7 @@ Expression Examples: ```bash statement1 && statement2 # both statements are true -statement1 || statement2 # one of the statement is true +statement1 || statement2 # at least one of the statements is true str1=str2 # str1 matches str2 str1!=str2 # str1 does not match str2