summaryrefslogtreecommitdiff
path: root/ace/IOStream.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/IOStream.cpp')
-rw-r--r--ace/IOStream.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/IOStream.cpp b/ace/IOStream.cpp
index f9d96970129..e45ff844d68 100644
--- a/ace/IOStream.cpp
+++ b/ace/IOStream.cpp
@@ -42,7 +42,7 @@
// invokes iostream::operator>> (int&) then iostream::operator>> (String&)
//
// What has happened is that the first >> is invoked on the base class and returns
- // a reference to iostream. The second >> has no idea of the ACE_IOStream_T and
+ // a reference to iostream. The second >> has no idea of the ACE_IOStream and
// gets invoked on iostream. Probably NOT what you wanted!