summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-03-30 16:59:21 +0000
committerChris Lattner <sabre@nondot.org>2008-03-30 16:59:21 +0000
commit74ba1711b7668196f5d6f6a2b129ad8cb4cc608c (patch)
treeddaf9a579d1f170e107f3c8ebc47c14d05db80a2 /docs
parent37c076bf91ec82b00ffcd78f9c382f3f427e053c (diff)
downloadllvm-74ba1711b7668196f5d6f6a2b129ad8cb4cc608c.tar.gz
llvm-74ba1711b7668196f5d6f6a2b129ad8cb4cc608c.tar.bz2
llvm-74ba1711b7668196f5d6f6a2b129ad8cb4cc608c.tar.xz
fix typo, PR2181
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48954 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/CommandLine.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/CommandLine.html b/docs/CommandLine.html
index e34de17faa..76cc51ce20 100644
--- a/docs/CommandLine.html
+++ b/docs/CommandLine.html
@@ -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>