From eb425679bee4101a976c30d06c1d8fcea95def34 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Wed, 20 Jan 2021 22:41:08 -0600 Subject: [PATCH] Cleanup: comment for memory function. --- level_0/f_memory/c/memory.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/level_0/f_memory/c/memory.h b/level_0/f_memory/c/memory.h index 685ae1d..aa62ae4 100644 --- a/level_0/f_memory/c/memory.h +++ b/level_0/f_memory/c/memory.h @@ -118,14 +118,14 @@ extern "C" { /** * Create some dynamically allocated array of some length. * + * @param length + * The total number of blocks to be allocated. + * Must be greater than 0. * @param pointer * A pointer that will be updated to the address of the newly allocated memory. * @param size * The block size, in bytes (size * length = allocated size). * Must be greater than 0. - * @param length - * The total number of blocks to be allocated. - * Must be greater than 0. * * @return * F_none on success. -- 1.8.3.1