summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfielding <fielding@13f79535-47bb-0310-9956-ffa450edef68>2004-12-11 04:20:42 +0000
committerfielding <fielding@13f79535-47bb-0310-9956-ffa450edef68>2004-12-11 04:20:42 +0000
commit27ba830957e2ede777f19c6390ab7e6d9d445794 (patch)
tree86954f641bca47954b9f2aa91ff99f82ffa795cb
parent2cd51dd16965980a326be18bc3fb1b7d5c602717 (diff)
downloadlibapr-27ba830957e2ede777f19c6390ab7e6d9d445794.tar.gz
typo in comment
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@111574 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--file_io/unix/readwrite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file_io/unix/readwrite.c b/file_io/unix/readwrite.c
index 97daf3fab..07e112273 100644
--- a/file_io/unix/readwrite.c
+++ b/file_io/unix/readwrite.c
@@ -247,7 +247,7 @@ APR_DECLARE(apr_status_t) apr_file_writev(apr_file_t *thefile, const struct iove
* over the iovec one at a time, we loose the atomic properties of
* writev(). The other option is to combine the entire iovec into one
* buffer that we could then send in one call to write(). This is not
- * reasonable since we do not know how much data an iocev could contain.
+ * reasonable since we do not know how much data an iovec could contain.
*
* The only reasonable option, that maintains the semantics of a real
* writev(), is to only write the first iovec. Callers of file_writev()