]> git.lizzy.rs Git - uwu-lang.git/commitdiff
Fix multiline string literal example
authorElias Fleckenstein <eliasfleckenstein@web.de>
Thu, 30 Dec 2021 14:16:56 +0000 (15:16 +0100)
committerElias Fleckenstein <eliasfleckenstein@web.de>
Thu, 30 Dec 2021 14:16:56 +0000 (15:16 +0100)
doc/syntax.md

index 6ec3cfcfb25b8cc0804acbcb75e50641e0c43dcf..aa62fb633cabf2387d23ff874a4bd98af187113b 100644 (file)
@@ -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.