From 74ba1711b7668196f5d6f6a2b129ad8cb4cc608c Mon Sep 17 00:00:00 2001
From: Chris Lattner
Date: Sun, 30 Mar 2008 16:59:21 +0000
Subject: [PATCH] fix typo, PR2181
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48954 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/CommandLine.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
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()) ...
...
--
2.34.1