From df5242a1a6065c3402f3cee54413de25728b6186 Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Wed, 24 May 2017 23:24:55 +0200 Subject: [PATCH] remove typo --- include/hermit/malloc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/hermit/malloc.h b/include/hermit/malloc.h index 1186be556..fbdf4fa98 100644 --- a/include/hermit/malloc.h +++ b/include/hermit/malloc.h @@ -54,7 +54,7 @@ union buddy; /** @brief Buddy * * Every free memory block is stored in a linked list according to its size. - * We can use this free memory to store store this buddy_t union which represents + * We can use this free memory to store this buddy_t union which represents * this block (the buddy_t union is alligned to the front). * Therefore the address of the buddy_t union is equal with the address * of the underlying free memory block.