Skip to content

Commit 3667ee2

Browse files
authored
Merge pull request #26 from wouterscm/patch-1
Fix documentation so it matches the code
2 parents 0858aba + af61b8f commit 3667ee2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/CException.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -230,19 +230,19 @@ further requirements, then calls `CException.h` to do the gruntwork. All
230230
of these are optional. You could directly include `CException.h` if
231231
you wanted and just use the defaults provided.
232232

233-
* `EXCEPTION_T`
233+
* `CEXCEPTION_T`
234234
* Set this to the type you want your exception id's to be. Defaults to 'unsigned int'.
235235

236-
* `EXCEPTION_NONE`
236+
* `CEXCEPTION_NONE`
237237
* Set this to a number which will never be an exception id in your system. Defaults to `0x5a5a5a5a`.
238238

239-
* `EXCEPTION_GET_ID`
239+
* `CEXCEPTION_GET_ID`
240240
* If in a multi-tasking environment, this should be
241241
set to be a call to the function described in #2 above.
242242
Defaults to just return `0` all the time (good for
243243
single tasking environments)
244244

245-
* `EXCEPTION_NUM_ID`
245+
* `CEXCEPTION_NUM_ID`
246246
* If in a multi-tasking environment, this should be set
247247
to the number of ID's required (usually the number of
248248
tasks in the system). Defaults to `1` (for single

0 commit comments

Comments
 (0)