summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorXie Yanbo <xieyanbo@gmail.com>2024-04-29 11:01:03 (GMT)
committerGitHub <noreply@github.com>2024-04-29 11:01:03 (GMT)
commit0315521c52bf162bd01d21699f3ac5e5bbe78a77 (patch)
tree0fbe849502fd5432a403987646b3464de660bee9 /Doc
parent030fcc47fb71719f63d5c6f8c68717250ec3d5cb (diff)
downloadcpython-0315521c52bf162bd01d21699f3ac5e5bbe78a77.zip
cpython-0315521c52bf162bd01d21699f3ac5e5bbe78a77.tar.gz
cpython-0315521c52bf162bd01d21699f3ac5e5bbe78a77.tar.bz2
Fix typo in Doc/howto/timerfd.rst (GH-118376)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/howto/timerfd.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/timerfd.rst b/Doc/howto/timerfd.rst
index 98f0294..b5fc06a 100644
--- a/Doc/howto/timerfd.rst
+++ b/Doc/howto/timerfd.rst
@@ -108,7 +108,7 @@ descriptors to wait until the file descriptor is ready for reading:
# In 1.5 seconds, 1st timer, 2nd timer and 3rd timer fires at once.
#
# If a timer file descriptor is signaled more than once since
- # the last os.read() call, os.read() returns the nubmer of signaled
+ # the last os.read() call, os.read() returns the number of signaled
# as host order of class bytes.
print(f"Signaled events={events}")
for fd, event in events: