aboutsummaryrefslogtreecommitdiff
path: root/docs/library/micropython.rst
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2019-07-11 11:55:31 +1000
committerDamien George <damien.p.george@gmail.com>2019-07-17 16:09:32 +1000
commitbc66fe9064c48268dbc88b8c3197f560351b1039 (patch)
treed37a2bb8df0ba7471fe097e3fe15bbf89024df33 /docs/library/micropython.rst
parent3e558300669effa93e5e4dad4c8c4ecc167766c4 (diff)
py/scheduler: Rename sched_stack to sched_queue.
Behaviour was changed from stack to queue in 8977c7eb581f5d06500edb1ea29aea5cbda04f28, and this updates variable names to match. Also updates other references (docs, error messages).
Diffstat (limited to 'docs/library/micropython.rst')
-rw-r--r--docs/library/micropython.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/library/micropython.rst b/docs/library/micropython.rst
index d9f913bff..2b4c1168c 100644
--- a/docs/library/micropython.rst
+++ b/docs/library/micropython.rst
@@ -136,5 +136,5 @@ Functions
:ref:`reference documentation <isr_rules>` under "Creation of Python
objects".
- There is a finite stack to hold the scheduled functions and `schedule()`
- will raise a `RuntimeError` if the stack is full.
+ There is a finite queue to hold the scheduled functions and `schedule()`
+ will raise a `RuntimeError` if the queue is full.