[llvm-commits] [llvm] r129267 - /llvm/trunk/docs/CommandLine.html

NAKAMURA Takumi geek4civic at gmail.com
Sun Apr 10 20:27:31 PDT 2011


Author: chapuni
Date: Sun Apr 10 22:27:31 2011
New Revision: 129267

URL: http://llvm.org/viewvc/llvm-project?rev=129267&view=rev
Log:
docs/CommandLine.html: "ize.

Modified:
    llvm/trunk/docs/CommandLine.html

Modified: llvm/trunk/docs/CommandLine.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CommandLine.html?rev=129267&r1=129266&r2=129267&view=diff
==============================================================================
--- llvm/trunk/docs/CommandLine.html (original)
+++ llvm/trunk/docs/CommandLine.html Sun Apr 10 22:27:31 2011
@@ -231,11 +231,11 @@
 <a href="#cl::opt">cl::opt</a><string> OutputFilename("<i>o</i>", <a href="#cl::desc">cl::desc</a>("<i>Specify output filename</i>"), <a href="#cl::value_desc">cl::value_desc</a>("<i>filename</i>"));
 </pre></div>
 
-<p>This declares a global variable "<tt>OutputFilename</tt>" that is used to
-capture the result of the "<tt>o</tt>" argument (first parameter).  We specify
-that this is a simple scalar option by using the "<tt><a
-href="#cl::opt">cl::opt</a></tt>" template (as opposed to the <a
-href="#list">"<tt>cl::list</tt> template</a>), and tell the CommandLine library
+<p>This declares a global variable "<tt>OutputFilename</tt>" that is used to
+capture the result of the "<tt>o</tt>" argument (first parameter).  We specify
+that this is a simple scalar option by using the "<tt><a
+href="#cl::opt">cl::opt</a></tt>" template (as opposed to the <a
+href="#list">"<tt>cl::list</tt> template</a>), and tell the CommandLine library
 that the data type that we are parsing is a string.</p>
 
 <p>The second and third parameters (which are optional) are used to specify what





More information about the llvm-commits mailing list