aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2023-08-25 15:02:57 +0800
committerLi Jin <dragon-fly@qq.com>2023-08-25 15:02:57 +0800
commit15055de0f780d77bdbf2ad7fc85a17de8af15893 (patch)
tree63f74967e32239f202fa0b0860ad0d429da9dcc3 /doc
parentcfcea12ba0e6a40d7c04ac64c75563db0896985c (diff)
downloadyuescript-15055de0f780d77bdbf2ad7fc85a17de8af15893.tar.gz
yuescript-15055de0f780d77bdbf2ad7fc85a17de8af15893.tar.bz2
yuescript-15055de0f780d77bdbf2ad7fc85a17de8af15893.zip
update doc.
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}