summaryrefslogtreecommitdiff
path: root/ace/ACE.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2000-05-29 21:50:42 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2000-05-29 21:50:42 +0000
commit55dea0eec267ab0be1013119ed81c1c7ebb5f148 (patch)
tree63ea324cc52587dc0db50ee87dbe93e732b44586 /ace/ACE.h
parent7d5711785eb656796b980af918c1155f75473d80 (diff)
downloadATCD-55dea0eec267ab0be1013119ed81c1c7ebb5f148.tar.gz
ChangeLogTag:Mon May 29 16:49:25 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'ace/ACE.h')
-rw-r--r--ace/ACE.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/ACE.h b/ace/ACE.h
index 3057d4acfa0..1f2615f9343 100644
--- a/ace/ACE.h
+++ b/ace/ACE.h
@@ -100,7 +100,7 @@ public:
// If <timeout> != 0, the call will wait until the relative time
// specified in *<timeout> elapses.
//
- // The "_n" I/O methods keep looping until all the data has been
+ // The "_n()" I/O methods keep looping until all the data has been
// transferred. These methods also work for sockets in non-blocking
// mode i.e., they keep looping on EWOULDBLOCK. <timeout> is used
// to make sure we keep making progress, i.e., the same timeout
@@ -108,7 +108,7 @@ public:
// is not counted down.
//
// The return values for the "*_n()" methods match the return values
- // from the non "_n" methods and are specified as follows:
+ // from the non "_n()" methods and are specified as follows:
//
// - On complete transfer, the number of bytes transferred is returned.
// - On timeout, -1 is returned, errno == ETIME.