summaryrefslogtreecommitdiff
path: root/src/pool.c
diff options
context:
space:
mode:
authorWill Stamper <epmatsw@gmail.com>2014-12-04 21:06:59 -0600
committerWill Stamper <epmatsw@gmail.com>2014-12-04 21:06:59 -0600
commitb874629b2d5823b7f52055a9784cc2e34cd48efb (patch)
tree6ce8a50295f3de1fc8ca00344b39dc180eb506e8 /src/pool.c
parent8bfbe6988fe749a4970613db371a214f18fc5c9b (diff)
downloadlibgit2-b874629b2d5823b7f52055a9784cc2e34cd48efb.tar.gz
Spelling fixes
Diffstat (limited to 'src/pool.c')
-rw-r--r--src/pool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pool.c b/src/pool.c
index 180643ca7..a5dfa0f49 100644
--- a/src/pool.c
+++ b/src/pool.c
@@ -159,7 +159,7 @@ void *git_pool_malloc(git_pool *pool, uint32_t items)
return ptr;
}
- /* just add a block if there is no open one to accomodate this */
+ /* just add a block if there is no open one to accommodate this */
if (size >= pool->page_size || !scan || scan->avail < size)
return pool_alloc_page(pool, size);