diff options
-rw-r--r-- | doc/info/chap/memory-allocation.texinfo | 4 | ||||
-rw-r--r-- | include/malloc.h | 2 | ||||
-rw-r--r-- | src/malloc/aligned_alloc.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/doc/info/chap/memory-allocation.texinfo b/doc/info/chap/memory-allocation.texinfo index eddefd0..cc65e16 100644 --- a/doc/info/chap/memory-allocation.texinfo +++ b/doc/info/chap/memory-allocation.texinfo @@ -859,10 +859,10 @@ p = aligned_alloc(sizeof(*p), n) @end example @ifnottex -Etymology: (Align)ed memory (alloc)ation. +Etymology: (Aligned) memory (alloc)ation. @end ifnottex @iftex -Etymology: @b{Align}ed memory @b{alloc}ation. +Etymology: @b{Aligned} memory @b{alloc}ation. @end iftex @end table diff --git a/include/malloc.h b/include/malloc.h index 1735f46..ab41632 100644 --- a/include/malloc.h +++ b/include/malloc.h @@ -328,7 +328,7 @@ void* pvalloc(size_t) * will allocate a bit of extra memory and shift the returned * pointer so that it is aligned. * - * @etymology (Align)ed memory (alloc)ation. + * @etymology (Aligned) memory (alloc)ation. * * @param boundary The alignment. * @param size The number of bytes to allocated. diff --git a/src/malloc/aligned_alloc.c b/src/malloc/aligned_alloc.c index a562ca0..0b19dc7 100644 --- a/src/malloc/aligned_alloc.c +++ b/src/malloc/aligned_alloc.c @@ -30,7 +30,7 @@ * will allocate a bit of extra memory and shift the returned * pointer so that it is aligned. * - * @etymology (Alig)ned memory (alloc)ation. + * @etymology (Aligned) memory (alloc)ation. * * @param boundary The alignment. * @param size The number of bytes to allocated. |