summaryrefslogtreecommitdiff
path: root/src/cairo-malloc-private.h
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2012-03-25 15:00:44 -0400
committerBehdad Esfahbod <behdad@behdad.org>2012-03-25 15:00:44 -0400
commit73cde7a0f6d86f1e72d080757f863caddb0530e6 (patch)
tree597eb8b2c68ca7e9c56a4cc2dc75c24923326a54 /src/cairo-malloc-private.h
parentede11b2954db19e3ca9d31cef7d04a7bf0e42ddc (diff)
downloadcairo-73cde7a0f6d86f1e72d080757f863caddb0530e6.tar.gz
Fix typos
Diffstat (limited to 'src/cairo-malloc-private.h')
-rw-r--r--src/cairo-malloc-private.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cairo-malloc-private.h b/src/cairo-malloc-private.h
index e5acf1661..c021b9ff2 100644
--- a/src/cairo-malloc-private.h
+++ b/src/cairo-malloc-private.h
@@ -64,7 +64,7 @@
/**
* _cairo_malloc_ab:
- * @n: number of elements to allocate
+ * @a: number of elements to allocate
* @size: size of each element
*
* Allocates @n*@size memory using _cairo_malloc(), taking care to not
@@ -86,7 +86,7 @@
/**
* _cairo_realloc_ab:
* @ptr: original pointer to block of memory to be resized
- * @n: number of elements to allocate
+ * @a: number of elements to allocate
* @size: size of each element
*
* Reallocates @ptr a block of @n*@size memory using realloc(), taking
@@ -107,7 +107,7 @@
/**
* _cairo_malloc_abc:
- * @n: first factor of number of elements to allocate
+ * @a: first factor of number of elements to allocate
* @b: second factor of number of elements to allocate
* @size: size of each element
*