From 328de495de2eae0bced482089d43d3a56e2b6409 Mon Sep 17 00:00:00 2001 From: Sudeep Mohanty Date: Tue, 17 Sep 2024 09:16:06 +0200 Subject: [PATCH] fix(console): Fixed a typing error in the console advanced example --- .../console/advanced/components/cmd_system/cmd_system_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/system/console/advanced/components/cmd_system/cmd_system_common.c b/examples/system/console/advanced/components/cmd_system/cmd_system_common.c index aea5f7d10b..8daa5e5cca 100644 --- a/examples/system/console/advanced/components/cmd_system/cmd_system_common.c +++ b/examples/system/console/advanced/components/cmd_system/cmd_system_common.c @@ -159,7 +159,7 @@ static void register_free(void) ESP_ERROR_CHECK( esp_console_cmd_register(&cmd) ); } -/* 'heap' command prints minumum heap size */ +/* 'heap' command prints minimum heap size */ static int heap_size(int argc, char **argv) { uint32_t heap_size = heap_caps_get_minimum_free_size(MALLOC_CAP_DEFAULT);