summaryrefslogtreecommitdiffstats
path: root/Lib/sched.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2024-07-19 09:13:08 (GMT)
committerGitHub <noreply@github.com>2024-07-19 09:13:08 (GMT)
commita45d9051ed8488b169cbcb12b036120c0e853b9c (patch)
tree7d442b10ef935a9985059da5691241f965592447 /Lib/sched.py
parent225cbee8d8ced55c2edb16f9cdc73cd05bf0f67b (diff)
downloadcpython-a45d9051ed8488b169cbcb12b036120c0e853b9c.zip
cpython-a45d9051ed8488b169cbcb12b036120c0e853b9c.tar.gz
cpython-a45d9051ed8488b169cbcb12b036120c0e853b9c.tar.bz2
[3.13] gh-121905: Consistently use "floating-point" instead of "floating point" (GH-121907) (GH-122012)
(cherry picked from commit 1a0c7b9ba48a2dffb70bb0c7327abae1d3e87356)
Diffstat (limited to 'Lib/sched.py')
-rw-r--r--Lib/sched.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/sched.py b/Lib/sched.py
index 14613cf..fb20639 100644
--- a/Lib/sched.py
+++ b/Lib/sched.py
@@ -11,7 +11,7 @@ substituting time and sleep from built-in module time, or you can
implement simulated time by writing your own functions. This can
also be used to integrate scheduling with STDWIN events; the delay
function is allowed to modify the queue. Time can be expressed as
-integers or floating point numbers, as long as it is consistent.
+integers or floating-point numbers, as long as it is consistent.
Events are specified by tuples (time, priority, action, argument, kwargs).
As in UNIX, lower priority numbers mean higher priority; in this