diff options
author | Li Jin <dragon-fly@qq.com> | 2022-09-13 22:31:31 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2022-09-13 22:31:31 +0800 |
commit | cb1fbac9223cc62739aa5c7bb97cba6e9dbd87c0 (patch) | |
tree | cd08fb8a717a4fb31bc800761652eec95171c0da /doc | |
parent | 27b7211e74d5677fbf5c5212264d32c7bfaffc20 (diff) | |
download | yuescript-cb1fbac9223cc62739aa5c7bb97cba6e9dbd87c0.tar.gz yuescript-cb1fbac9223cc62739aa5c7bb97cba6e9dbd87c0.tar.bz2 yuescript-cb1fbac9223cc62739aa5c7bb97cba6e9dbd87c0.zip |
fix readme.
Diffstat (limited to 'doc')
-rwxr-xr-x | doc/docs/doc/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/docs/doc/README.md b/doc/docs/doc/README.md index 46511ea..3e94c9c 100755 --- a/doc/docs/doc/README.md +++ b/doc/docs/doc/README.md | |||
@@ -1243,12 +1243,12 @@ The syntax support for Lua 5.4 attributes. | |||
1243 | 1243 | ||
1244 | ```moonscript | 1244 | ```moonscript |
1245 | const a = 123 | 1245 | const a = 123 |
1246 | close _ = close#: -> print "Out of scope." | 1246 | close _ = <close>: -> print "Out of scope." |
1247 | ``` | 1247 | ``` |
1248 | <YueDisplay> | 1248 | <YueDisplay> |
1249 | <pre> | 1249 | <pre> |
1250 | const a = 123 | 1250 | const a = 123 |
1251 | close _ = close#: -> print "Out of scope." | 1251 | close _ = <close>: -> print "Out of scope." |
1252 | </pre> | 1252 | </pre> |
1253 | </YueDisplay> | 1253 | </YueDisplay> |
1254 | 1254 | ||