summaryrefslogtreecommitdiff
path: root/memory
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2002-01-21 18:28:52 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2002-01-21 18:28:52 +0000
commit1d34fa0182262207a06d87557996f6914cdcd74b (patch)
treecdfd67f596e135f09ad867df3cf77daa5c0fd7f0 /memory
parent8f8d0f360c33859565ec2005da78134979a4518a (diff)
downloadlibapr-1d34fa0182262207a06d87557996f6914cdcd74b.tar.gz
fix a typo in a comment
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62812 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'memory')
-rw-r--r--memory/unix/apr_pools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/memory/unix/apr_pools.c b/memory/unix/apr_pools.c
index d99710b31..a8d961267 100644
--- a/memory/unix/apr_pools.c
+++ b/memory/unix/apr_pools.c
@@ -268,7 +268,7 @@ static APR_INLINE node_t *node_malloc(allocator_t *allocator, apr_size_t size)
size = MIN_ALLOC;
/* Find the index for this node size by
- * deviding its size by the boundary size
+ * dividing its size by the boundary size
*/
index = (size >> BOUNDARY_INDEX) - 1;