diff options
Diffstat (limited to 'docs/src/interrupts.dox')
-rw-r--r-- | docs/src/interrupts.dox | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/interrupts.dox b/docs/src/interrupts.dox index 8c61eaa6e..2a14bd6aa 100644 --- a/docs/src/interrupts.dox +++ b/docs/src/interrupts.dox @@ -12,7 +12,7 @@ CH_IRQ_HANDLER(myIRQ) { // IRQ handling code, preemptable if the architecture supports it.
chSysLockI();
- // Invocation of some I-Class system API, never preemptable.
+ // Invocation of some I-Class system APIs, never preemptable.
chSysUnlockI().
// More IRQ handling code, again preemptable.
|