summaryrefslogtreecommitdiff
path: root/ace/IOStream.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-08-03 16:23:10 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-08-03 16:23:10 +0000
commit37d782d388640bc82e391884cc0966dcb401d902 (patch)
tree8b4b60b62a939b16b1b35178bdda28246b976ab7 /ace/IOStream.cpp
parent04d609da27d3a177097bf4318b8abf146c5bd37e (diff)
downloadATCD-37d782d388640bc82e391884cc0966dcb401d902.tar.gz
*** empty log message ***
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!