From a01203e0478388762f78b6962cedab2fee83c350 Mon Sep 17 00:00:00 2001
From: Chris Lattner
Date: Sun, 30 Mar 2008 16:59:21 +0000
Subject: fix typo, PR2181
llvm-svn: 48954
---
llvm/docs/CommandLine.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
(limited to 'llvm/docs')
diff --git a/llvm/docs/CommandLine.html b/llvm/docs/CommandLine.html
index e34de17faa2..76cc51ce203 100644
--- a/llvm/docs/CommandLine.html
+++ b/llvm/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()) ...
...
--
cgit v1.2.3