From b874629b2d5823b7f52055a9784cc2e34cd48efb Mon Sep 17 00:00:00 2001 From: Will Stamper Date: Thu, 4 Dec 2014 21:06:59 -0600 Subject: Spelling fixes --- src/pool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pool.c') 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); -- cgit v1.2.1