diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-04-21 14:53:20 +0530 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-04-21 22:57:19 +0300 |
commit | a5b99dce5dbe5d9e681fef59c4efebe2c80c5ce5 (patch) | |
tree | 843e1de8e57e3d5eb946dbb0158f2e2be437209b /docs/markdown/Syntax.md | |
parent | cb0960a91e1b250a00c0a1e4a40b7e86bc70a97d (diff) | |
download | meson-a5b99dce5dbe5d9e681fef59c4efebe2c80c5ce5.zip meson-a5b99dce5dbe5d9e681fef59c4efebe2c80c5ce5.tar.gz meson-a5b99dce5dbe5d9e681fef59c4efebe2c80c5ce5.tar.bz2 |
Add more tests for multi-line strings and update docs
Diffstat (limited to 'docs/markdown/Syntax.md')
-rw-r--r-- | docs/markdown/Syntax.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/markdown/Syntax.md b/docs/markdown/Syntax.md index 01c8c6e..30eedf8 100644 --- a/docs/markdown/Syntax.md +++ b/docs/markdown/Syntax.md @@ -131,7 +131,8 @@ int main (int argc, char ** argv) { }''' ``` -This can also be combined with the string formatting functionality +These are raw strings that do not support the escape sequences listed above. +These strings can also be combined with the string formatting functionality described below. #### String formatting |