fix typo, PR2181

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48954 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2008-03-30 16:59:21 +00:00
parent 37c076bf91
commit 74ba1711b7

View 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>