]> git.proxmox.com Git - libgit2.git/commitdiff
pool: fix documentation
authorEdward Thomson <ethomson@edwardthomson.com>
Wed, 28 Oct 2015 14:53:03 +0000 (10:53 -0400)
committerEdward Thomson <ethomson@edwardthomson.com>
Wed, 28 Oct 2015 14:53:03 +0000 (10:53 -0400)
src/pool.h

index 4f1e6f304d2b213b8beea1a3e8f5d6d7c5ddd9d0..d16bd349a709bc7c62af78172eaf69e29a890105 100644 (file)
@@ -38,12 +38,12 @@ typedef struct {
  *
  * To allocation strings, use like this:
  *
- *     git_pool_init(&string_pool, 1, 0);
+ *     git_pool_init(&string_pool, 1);
  *     my_string = git_pool_strdup(&string_pool, your_string);
  *
  * To allocate items of fixed size, use like this:
  *
- *     git_pool_init(&pool, sizeof(item), 0);
+ *     git_pool_init(&pool, sizeof(item));
  *     my_item = git_pool_malloc(&pool, 1);
  *
  * Of course, you can use this in other ways, but those are the