fix typo, PR2181
authorChris Lattner <sabre@nondot.org>
Sun, 30 Mar 2008 16:59:21 +0000 (16:59 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 30 Mar 2008 16:59:21 +0000 (16:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48954 91177308-0d34-0410-b5e6-96231b3b80d8

docs/CommandLine.html

index e34de17faa29c766917b640f2094cc6ca7b7fbd3..76cc51ce20369aefd079da7077cc9ac9c1d13afa 100644 (file)
@@ -256,8 +256,8 @@ example:</p>
 
 <div class="doc_code"><pre>
   ...
-  ofstream Output(OutputFilename.c_str());
-  if (Out.good()) ...
+  std::ofstream Output(OutputFilename.c_str());
+  if (Output.good()) ...
   ...
 </pre></div>