Fix a mistake at runtime value example.

This commit is contained in:
Alexander McCord 2021-11-17 12:09:01 -08:00 committed by GitHub
parent a606601473
commit d4084f98bf
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -66,7 +66,7 @@ print(`backslash \ that escapes the space is not a part of the string...`)
print(`backslash \\ will escape the second backslash...`)
print(`Some text that also includes \`...`)
--> Some example escaping the braces {like so}
--> backslash that doesn't escape anything is part of the string...
--> backslash that escapes the space is not a part of the string...
--> backslash \ will escape the second backslash...
--> Some text that also includes `...
```