summaryrefslogtreecommitdiff
path: root/include/apr_tables.h
diff options
context:
space:
mode:
authorKarl Fogel <kfogel@apache.org>2001-07-07 18:43:31 +0000
committerKarl Fogel <kfogel@apache.org>2001-07-07 18:43:31 +0000
commit50fb73d9721fe73f38dd61d1e43a55efbd560c6f (patch)
tree37b72bc28c931d20758fb7f70e11870948aaf110 /include/apr_tables.h
parent09ab039feec0f02473c6ce5a9c05fd185760930e (diff)
downloadapr-50fb73d9721fe73f38dd61d1e43a55efbd560c6f.tar.gz
(apr_table_do): Trivial grammar fix to doc string.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61896 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_tables.h')
-rw-r--r--include/apr_tables.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/apr_tables.h b/include/apr_tables.h
index ff6deff36..4113e2eb8 100644
--- a/include/apr_tables.h
+++ b/include/apr_tables.h
@@ -364,7 +364,7 @@ APR_DECLARE(apr_table_t *) apr_table_overlay(apr_pool_t *p,
/**
* Iterate over a table running the provided function once for every
* element in the table. If there is data passed in as a vararg, then the
- * function is only run on those element's whose key matches something in
+ * function is only run on those elements whose key matches something in
* the vararg. If the vararg is NULL, then every element is run through the
* function. Iteration continues while the function returns non-zero.
* @param comp The function to run