From d90599ecface1a60e88ae14c806200b9e8a7662e Mon Sep 17 00:00:00 2001 From: Nathael Pajani Date: Fri, 22 Sep 2023 00:03:41 +0200 Subject: [PATCH] Typo fix and comment update --- core/fault_handlers.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/fault_handlers.c b/core/fault_handlers.c index f49e63e..570995e 100644 --- a/core/fault_handlers.c +++ b/core/fault_handlers.c @@ -24,9 +24,11 @@ /* Default "fault" handlers, which catch the fault exceptions. * These are defined as weak aliases of a dummy fault handler which enters an empty infinite - * loop and chould be overidden by user defined handlers. + * loop and should be overidden by user defined handlers. */ +/* Note that this has not been fully tested */ + #include "lib/stdint.h" void fault_info(const char* name, uint32_t len) __attribute__ ((weak, alias ("Dummy_Fault_Handler"))); -- 2.43.0