]> git.ozlabs.org Git - ccan/blobdiff - ccan/array/array.c
array: spelling fixes.
[ccan] / ccan / array / array.c
index 3d810471552499bc46ecc8e79cd4f16adf24484d..5edc2ce68199a3f92cf4c03b3159e4bfc6c7f270 100644 (file)
@@ -6,7 +6,7 @@ int array_alias_helper(const void *a, const void *b) {
        return 0;
 }
 
-//grows the allocated size to accomodate the size
+//grows the allocated size to accommodate the size
 void array_resize_helper(array_char *a, size_t itemSize) {
        a->alloc = (a->size+63)&~63;
        #ifndef ARRAY_USE_TALLOC