Typo fix and comment update
authorNathael Pajani <nathael.pajani@ed3l.fr>
Thu, 21 Sep 2023 22:03:41 +0000 (00:03 +0200)
committerNathael Pajani <nathael.pajani@ed3l.fr>
Thu, 21 Sep 2023 22:03:41 +0000 (00:03 +0200)
core/fault_handlers.c

index f49e63e..570995e 100644 (file)
 
 /* 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")));