aboutsummaryrefslogtreecommitdiff
path: root/array.h
diff options
context:
space:
mode:
Diffstat (limited to 'array.h')
-rw-r--r--array.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/array.h b/array.h
index 5eb8daa..9764bef 100644
--- a/array.h
+++ b/array.h
@@ -33,14 +33,14 @@ typedef struct {
} Array;
/**
- * Initalize an Array object to store pointers.
+ * Initialize an Array object to store pointers.
* @rst
* .. note:: Is equivalent to ``array_init_sized(arr, sizeof(void*))``.
* @endrst
*/
void array_init(Array*);
/**
- * Initalize an Array object to store arbitrarily sized objects.
+ * Initialize an Array object to store arbitrarily sized objects.
*/
void array_init_sized(Array*, size_t elem_size);
/** Initialize Array by using the same element size as in ``from``. */