summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2012-03-07 08:57:31 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2012-03-07 08:57:31 +0000
commit80134582b6fd4836a167c2c731ed0023ceec9100 (patch)
tree7c0037ec4b19d7b59cbecde555bbb3c84ebf6202 /docs
parent9fcce65e7e1307b5b8da9be13e4092d6bb94dc1d (diff)
Correct the documentation to give a legal example of a raw string literal.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@152216 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LanguageExtensions.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/LanguageExtensions.html b/docs/LanguageExtensions.html
index 9f271900cb..12a91c9e6f 100644
--- a/docs/LanguageExtensions.html
+++ b/docs/LanguageExtensions.html
@@ -775,7 +775,8 @@ is enabled.</p>
range-based for loop is enabled. </p>
<h4 id="cxx_raw_string_literals">C++11 raw string literals</h4>
-<p>Use <tt>__has_feature(cxx_raw_string_literals)</tt> to determine if support for raw string literals (e.g., <tt>R"foo\bar"</tt>) is enabled.</p>
+<p>Use <tt>__has_feature(cxx_raw_string_literals)</tt> to determine if support
+for raw string literals (e.g., <tt>R"x(foo\bar)x"</tt>) is enabled.</p>
<h4 id="cxx_rvalue_references">C++11 rvalue references</h4>