summaryrefslogtreecommitdiff
path: root/file_io/unix
diff options
context:
space:
mode:
authorRoy T. Fielding <fielding@apache.org>2004-12-11 04:20:42 +0000
committerRoy T. Fielding <fielding@apache.org>2004-12-11 04:20:42 +0000
commita6d212164860563d48edee12ac97f59ac2a884f9 (patch)
tree86954f641bca47954b9f2aa91ff99f82ffa795cb /file_io/unix
parentd024e6129239cbb61233dd23af1e9ce1443ebba6 (diff)
downloadapr-a6d212164860563d48edee12ac97f59ac2a884f9.tar.gz
typo in comment
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@111574 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io/unix')
-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()