diff options
author | Mike Causer <mcauser@gmail.com> | 2016-08-01 09:52:00 +1000 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-08-02 11:17:46 +0300 |
commit | ce166e6b68b7fafb73a99fd64081f8a4155fe22a (patch) | |
tree | 20b063465b430968482cea18c41f949fbd2ec845 /docs/reference/isr_rules.rst | |
parent | 3eb532e97463b7f9b9ffe6f617a035284ef3e37b (diff) | |
download | micropython-ce166e6b68b7fafb73a99fd64081f8a4155fe22a.tar.gz micropython-ce166e6b68b7fafb73a99fd64081f8a4155fe22a.zip |
docs: Spelling mistakes
Diffstat (limited to 'docs/reference/isr_rules.rst')
-rw-r--r-- | docs/reference/isr_rules.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/reference/isr_rules.rst b/docs/reference/isr_rules.rst index 2be4243f9e..b33e4dd6f2 100644 --- a/docs/reference/isr_rules.rst +++ b/docs/reference/isr_rules.rst @@ -24,7 +24,7 @@ This summarises the points detailed below and lists the principal recommendation * Where an ISR returns multiple bytes use a pre-allocated ``bytearray``. If multiple integers are to be shared between an ISR and the main program consider an array (``array.array``). * Where data is shared between the main program and an ISR, consider disabling interrupts prior to accessing - the data in the main program and re-enabling them immediately afterwards (see Critcal Sections). + the data in the main program and re-enabling them immediately afterwards (see Critical Sections). * Allocate an emergency exception buffer (see below). |