aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/docs/doc/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/docs/doc/README.md b/doc/docs/doc/README.md
index fbf7e50..7372eda 100755
--- a/doc/docs/doc/README.md
+++ b/doc/docs/doc/README.md
@@ -2622,7 +2622,7 @@ switch item
2622 2622
2623 -- not in range checking 2623 -- not in range checking
2624 when not in [1, 10) 2624 when not in [1, 10)
2625 print "not (1 < value <= 10)" 2625 print "not (1 <= value < 10)"
2626 2626
2627 -- checking discrete values 2627 -- checking discrete values
2628 when in {11, 21, 99} 2628 when in {11, 21, 99}
@@ -2643,7 +2643,7 @@ switch item
2643 2643
2644 -- not in range checking 2644 -- not in range checking
2645 when not in [1, 10) 2645 when not in [1, 10)
2646 print "not (1 < value <= 10)" 2646 print "not (1 <= value < 10)"
2647 2647
2648 -- checking discrete values 2648 -- checking discrete values
2649 when in {11, 21, 99} 2649 when in {11, 21, 99}