diff options
author | Chris Lattner <sabre@nondot.org> | 2008-03-30 16:59:21 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-03-30 16:59:21 +0000 |
commit | b917bc969c6c011942f09102e73ed5978fda650d (patch) | |
tree | ddaf9a579d1f170e107f3c8ebc47c14d05db80a2 /docs | |
parent | ef69fe9f36cf78eed4772636e10a2d74ebeb1b28 (diff) | |
download | external_llvm-b917bc969c6c011942f09102e73ed5978fda650d.zip external_llvm-b917bc969c6c011942f09102e73ed5978fda650d.tar.gz external_llvm-b917bc969c6c011942f09102e73ed5978fda650d.tar.bz2 |
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.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/CommandLine.html b/docs/CommandLine.html index e34de17..76cc51c 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> |