Skip to content

Commit

Permalink
Merge #218
Browse files Browse the repository at this point in the history
218: fixed typo in Interrupts.md r=therealprof a=tessi

Just fixing a double-`to` I encountered while reading the book.
Thanks for the great content ❤️ 

Co-authored-by: Philipp Tessenow <philipp@tessenow.org>
  • Loading branch information
bors[bot] and tessi committed Dec 27, 2019
2 parents c262349 + b0caac3 commit 9493b7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/start/interrupts.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Interrupt handlers look like plain functions (except for the lack of arguments)
similar to exception handlers. However they can not be called directly by other
parts of the firmware due to the special calling conventions. It is however
possible to generate interrupt requests in software to trigger a diversion to
to the interrupt handler.
the interrupt handler.

Similar to exception handlers it is also possible to declare `static mut`
variables inside the interrupt handlers for *safe* state keeping.
Expand Down

0 comments on commit 9493b7d

Please sign in to comment.