From de8e3bb7b6fedc0554cee20834001dd4a739cd88 Mon Sep 17 00:00:00 2001 From: Nick Hanley Date: Wed, 16 Nov 2022 13:28:50 -0500 Subject: fix miscellaneous spelling mistakes --- array.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'array.h') 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``. */ -- cgit v1.2.3