summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorstoddard <stoddard@13f79535-47bb-0310-9956-ffa450edef68>2001-03-24 21:04:57 +0000
committerstoddard <stoddard@13f79535-47bb-0310-9956-ffa450edef68>2001-03-24 21:04:57 +0000
commita8a1084e9db2b0bc24fb46af97930f3e7b8fc78d (patch)
tree4cb48ecfca5a437ba72490f5db163db5421ae2a9 /include
parent63fe6ce8e0bf26d53aade2425d0437e414cf7407 (diff)
downloadlibapr-a8a1084e9db2b0bc24fb46af97930f3e7b8fc78d.tar.gz
Fix a couple of typos in the comments.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61385 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/apr_tables.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/apr_tables.h b/include/apr_tables.h
index 2ff8e0991..e172a93dc 100644
--- a/include/apr_tables.h
+++ b/include/apr_tables.h
@@ -407,7 +407,7 @@ APR_DECLARE(void)
* int i;
*
* for (i = 0; i < barr->nelts; ++i) {
- * if (flags & apr_OVERLAP_TABLES_MERGE) {
+ * if (flags & APR_OVERLAP_TABLES_MERGE) {
* apr_table_mergen(a, belt[i].key, belt[i].val);
* }
* else {
@@ -426,7 +426,7 @@ APR_DECLARE(void)
#define APR_OVERLAP_TABLES_MERGE (1)
/**
* For each element in table b, either use setn or mergen to add the data
- * to table a. Wich method is used is determined by the flags passed in.
+ * to table a. Which method is used is determined by the flags passed in.
* @param a The table to add the data to.
* @param b The table to iterate over, adding it's data to table a
* @param flags How to add the table to table a. One of: