diff options
author | Howard Lovatt <howard.lovatt@gmail.com> | 2020-10-10 08:14:38 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2020-10-20 17:19:47 +1100 |
commit | 23f9439f441173dae961de4d2fe73986c166ff8f (patch) | |
tree | 7608f0a4db9aa49d791ba21f121917a90a735efa /docs | |
parent | 3bc0ecbcd974716920b860904a47ee7f69afb717 (diff) |
docs/library/machine.rst: Correct minor typo: timout to timeout.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/library/machine.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/library/machine.rst b/docs/library/machine.rst index b580353d6..18dc6f2af 100644 --- a/docs/library/machine.rst +++ b/docs/library/machine.rst @@ -79,7 +79,7 @@ Power related functions If *time_ms* is specified then this will be the maximum time in milliseconds that the sleep will last for. Otherwise the sleep can last indefinitely. - With or without a timout, execution may resume at any time if there are events + With or without a timeout, execution may resume at any time if there are events that require processing. Such events, or wake sources, should be configured before sleeping, like `Pin` change or `RTC` timeout. |