diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2023-09-12 17:50:13 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-12 17:50:13 +0300 |
commit | d2dfef5205f031ab10591899a1fc5048ea6f4134 (patch) | |
tree | 3e1be43920441f9167e9ee5498a357a1d378aec8 /docs/markdown/Syntax.md | |
parent | 1b6c9ad02ab88d92fd055ccc1307456105c064fe (diff) | |
parent | 14e35b63c02a16f69dd1ad5bde775e6868965eb2 (diff) | |
download | meson-d2dfef5205f031ab10591899a1fc5048ea6f4134.zip meson-d2dfef5205f031ab10591899a1fc5048ea6f4134.tar.gz meson-d2dfef5205f031ab10591899a1fc5048ea6f4134.tar.bz2 |
Merge pull request #12152 from bruchar1/ast-preserve-all
Preserve whitespaces and comments in AST
Diffstat (limited to 'docs/markdown/Syntax.md')
-rw-r--r-- | docs/markdown/Syntax.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Syntax.md b/docs/markdown/Syntax.md index b69ad00..59ec5f7 100644 --- a/docs/markdown/Syntax.md +++ b/docs/markdown/Syntax.md @@ -109,7 +109,7 @@ Strings in Meson are declared with single quotes. To enter a literal single quote do it like this: ```meson -single quote = 'contains a \' character' +single_quote = 'contains a \' character' ``` The full list of escape sequences is: |