From 592bfe0e015ded4acf431482c646821a9efe6d62 Mon Sep 17 00:00:00 2001 From: Legend Date: Wed, 29 Nov 2023 23:32:30 +0800 Subject: [PATCH] Fix typo in comment (#910) Co-authored-by: Tony Josi Co-authored-by: Soren Ptak Co-authored-by: Rahul Kar <118818625+kar-rahul-aws@users.noreply.github.com> Co-authored-by: Nikhil Kamath <110539926+amazonKamath@users.noreply.github.com> --- portable/MemMang/heap_5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/portable/MemMang/heap_5.c b/portable/MemMang/heap_5.c index 127b28f5e..18234626a 100644 --- a/portable/MemMang/heap_5.c +++ b/portable/MemMang/heap_5.c @@ -214,7 +214,7 @@ void * pvPortMalloc( size_t xWantedSize ) size_t xAdditionalRequiredSize; /* The heap must be initialised before the first call to - * prvPortMalloc(). */ + * pvPortMalloc(). */ configASSERT( pxEnd ); if( xWantedSize > 0 )