From 52da897e225a8141035e97215f5f39f155de0c36 Mon Sep 17 00:00:00 2001 From: Dirk Thomas Date: Wed, 16 Dec 2015 09:47:20 -0800 Subject: [PATCH] Spelling --- rcl/include/rcl/allocator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcl/include/rcl/allocator.h b/rcl/include/rcl/allocator.h index 4e849fe..53494cd 100644 --- a/rcl/include/rcl/allocator.h +++ b/rcl/include/rcl/allocator.h @@ -32,7 +32,7 @@ typedef struct rcl_allocator_t void * (*allocate)(size_t size, void * state); /// Deallocate previously allocated memory, mimicking free(). void (* deallocate)(void * pointer, void * state); - /// Reallocates if possible, otherwise it deallocates and allocates. + /// Reallocate if possible, otherwise it deallocates and allocates. /* If unsupported then do deallocate and then allocate. * \TODO(wjwwood): should this behave as reallocf? * This should behave as realloc is described, as opposed to reallocf, i.e.