fix: '' escape example comment

This commit is contained in:
Clouder 2024-01-06 02:26:40 +08:00 committed by GitHub
parent e952bddabd
commit 1b8a7b0dd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -235,7 +235,7 @@ let
in in
''the value of a is: ''the value of a is:
''${a} ''${a}
'' # 结果是 "the value of a is ''${a}" '' # 结果是 "the value of a is ${a}"
``` ```
其他 `\n` `\t` 等特殊字符的转义也类似,必须使用两个单引号来转义,如 其他 `\n` `\t` 等特殊字符的转义也类似,必须使用两个单引号来转义,如