aboutsummaryrefslogtreecommitdiff
path: root/doc/syntax.md
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2021-12-30 15:16:56 +0100
committerElias Fleckenstein <eliasfleckenstein@web.de>2021-12-30 15:16:56 +0100
commitc0952f7280007f5b93267deb2d336e86116dabe9 (patch)
tree0987a2a858ca61afe12cd50cc840a3fa1f36ceb4 /doc/syntax.md
parent1cdeea8bd4be4dd55f4ab5d5d0c33586473e0cb1 (diff)
downloaduwu-lang-c0952f7280007f5b93267deb2d336e86116dabe9.tar.xz
Fix multiline string literal example
Diffstat (limited to 'doc/syntax.md')
-rw-r--r--doc/syntax.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/syntax.md b/doc/syntax.md
index 6ec3cfc..aa62fb6 100644
--- a/doc/syntax.md
+++ b/doc/syntax.md
@@ -18,10 +18,10 @@ other_function_name
An expression is either of these:
- Integer literal: `0`, `1`, `3245`
-- String literal: `"hello, world"`, `""`, `"this is
+- String literal: `"hello, world"`, `""`, ```"this is
a multiline
string literal
-"`
+"```
- Argument number: `$0`, `$1`, `$5`
- Function reference: `&function_name`
- Function call: `function_name(args)` or just `function_name`, where args is a comma-separated list of expressions.