summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucas Werkmeister <mail@lucaswerkmeister.de>2017-11-18 22:06:08 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2017-11-19 18:16:35 +0200
commit5d9c72630aeef6f01a01f25853b42c7b316a24cd (patch)
treeb7e19df535c559c8972703df8d2e7e9cac482384
parente51da1a34d3ac2ed23451e05c971720c20aaa064 (diff)
downloadmeson-5d9c72630aeef6f01a01f25853b42c7b316a24cd.tar.gz
Fix literal backslash syntax
In CommonMark, there are no backslash escapes in code spans, so only two backslashes in the source document are necessary to produce two backslashes in the output document.
-rw-r--r--docs/markdown/Syntax.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Syntax.md b/docs/markdown/Syntax.md
index 88b9bbb50..84403f438 100644
--- a/docs/markdown/Syntax.md
+++ b/docs/markdown/Syntax.md
@@ -84,7 +84,7 @@ single quote do it like this:
single quote = 'contains a \' character'
```
-Similarly `\n` gets converted to a newline and `\\\\` to a single
+Similarly `\n` gets converted to a newline and `\\` to a single
backslash.
#### String concatenation