aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/CommandLine.html4
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>