diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-08-23 14:03:03 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-08-23 14:03:03 +0000 |
commit | ee45e24f0a0c6051513c0f05c180581cc273f043 (patch) | |
tree | 376999cff1a443ec492fd6343d9d0ce50a9b7b04 /docs/UsersManual.html | |
parent | 6d09a194bb296948ef05f6bff4435752450389fe (diff) |
Clarify documentation of escaping for backslash
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111806 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/UsersManual.html')
-rw-r--r-- | docs/UsersManual.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/UsersManual.html b/docs/UsersManual.html index a52c404c5b..205c95d309 100644 --- a/docs/UsersManual.html +++ b/docs/UsersManual.html @@ -368,7 +368,7 @@ Print Fix-Its in a machine parseable form.</dt> fix-it:"t.cpp":{7:25-7:29}:"Gamma" </pre> -<p>The range printed is a half-open range, so in this example the characters at column 25 up to but not including column 29 on line 7 in t.cpp should be replaced with the string "Gamma". Either the range or the replacement string may be empty (representing strict insertions and strict erasures, respectively). Both the file name and the insertion string escape backslash (as "\"), tabs (as "\t"), newlines (as "\n"), double quotes(as "\"") and non-printable characters (as octal "\xxx").</p> +<p>The range printed is a half-open range, so in this example the characters at column 25 up to but not including column 29 on line 7 in t.cpp should be replaced with the string "Gamma". Either the range or the replacement string may be empty (representing strict insertions and strict erasures, respectively). Both the file name and the insertion string escape backslash (as "\\"), tabs (as "\t"), newlines (as "\n"), double quotes(as "\"") and non-printable characters (as octal "\xxx").</p> </dd> </dl> |