Author: dgregor
Date: Thu Aug 19 18:31:13 2010
New Revision: 111573

URL: http://llvm.org/viewvc/llvm-project?rev=111573&view=rev
Log:
Fix some typos in the documentation of -fdiagnostics-parseable-fixits. Typos by 
me, patch by Eelis van der Weegen

Modified:
    cfe/trunk/docs/UsersManual.html

Modified: cfe/trunk/docs/UsersManual.html
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/UsersManual.html?rev=111573&r1=111572&r2=111573&view=diff
==============================================================================
--- cfe/trunk/docs/UsersManual.html (original)
+++ cfe/trunk/docs/UsersManual.html Thu Aug 19 18:31:13 2010
@@ -368,7 +368,7 @@
  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 '\', tabs (as 
"\n"), newlines (as "\n"), double quotes(as "\n") 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 '\', tabs (as 
"\t"), newlines (as "\n"), double quotes(as "\"") and non-printable characters 
(as octal "\xxx").</p>
 </dd>
 
 </dl>


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to