From af61b8f33794ddda1c330ed839bea5c0a611b01a Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 17 Aug 2022 17:23:53 +0200 Subject: [PATCH] Fix documentation so it matches the code --- docs/CException.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/CException.md b/docs/CException.md index 3b371b8..8792d20 100644 --- a/docs/CException.md +++ b/docs/CException.md @@ -230,19 +230,19 @@ further requirements, then calls `CException.h` to do the gruntwork. All of these are optional. You could directly include `CException.h` if you wanted and just use the defaults provided. -* `EXCEPTION_T` +* `CEXCEPTION_T` * Set this to the type you want your exception id's to be. Defaults to 'unsigned int'. -* `EXCEPTION_NONE` +* `CEXCEPTION_NONE` * Set this to a number which will never be an exception id in your system. Defaults to `0x5a5a5a5a`. -* `EXCEPTION_GET_ID` +* `CEXCEPTION_GET_ID` * If in a multi-tasking environment, this should be set to be a call to the function described in #2 above. Defaults to just return `0` all the time (good for single tasking environments) -* `EXCEPTION_NUM_ID` +* `CEXCEPTION_NUM_ID` * If in a multi-tasking environment, this should be set to the number of ID's required (usually the number of tasks in the system). Defaults to `1` (for single