summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2015-10-28 14:31:09 +0100
committerVicent Marti <tanoku@gmail.com>2015-10-28 14:31:09 +0100
commit340b15b71cca16b47db2e5c882952497efece14f (patch)
treef582d83dc0591214e5483ed1c9dc4ed98fd67b6d
parentd3416dfe29e59ba7de7bf49e060bf13c07960344 (diff)
downloadlibgit2-340b15b71cca16b47db2e5c882952497efece14f.tar.gz
pool: update comment
-rw-r--r--src/pool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pool.h b/src/pool.h
index f9ac86773..4f1e6f304 100644
--- a/src/pool.h
+++ b/src/pool.h
@@ -28,7 +28,7 @@ typedef struct git_pool_page git_pool_page;
* For examples of how to set up a `git_pool` see `git_pool_init`.
*/
typedef struct {
- git_pool_page *pages; /* pages with space left */
+ git_pool_page *pages; /* allocated pages */
uint32_t item_size; /* size of single alloc unit in bytes */
uint32_t page_size; /* size of page in bytes */
} git_pool;