From: Chris Lattner Date: Sun, 30 Mar 2008 16:59:21 +0000 (+0000) Subject: fix typo, PR2181 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=74ba1711b7668196f5d6f6a2b129ad8cb4cc608c;p=oota-llvm.git fix typo, PR2181 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48954 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/CommandLine.html b/docs/CommandLine.html index e34de17faa2..76cc51ce203 100644 --- a/docs/CommandLine.html +++ b/docs/CommandLine.html @@ -256,8 +256,8 @@ example:

   ...
-  ofstream Output(OutputFilename.c_str());
-  if (Out.good()) ...
+  std::ofstream Output(OutputFilename.c_str());
+  if (Output.good()) ...
   ...