Skip to content

Commit 0c2e1ee

Browse files
ritzowmiss-islington
authored andcommitted
gh-144233: Fix typo in os.eventfd documentation (GH-144234)
(cherry picked from commit 9982147) Co-authored-by: Solomon Ritzow <11698787+ritzow@users.noreply.github.com>
1 parent 4f4c204 commit 0c2e1ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/os.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3880,7 +3880,7 @@ features:
38803880
import os
38813881

38823882
# semaphore with start value '1'
3883-
fd = os.eventfd(1, os.EFD_SEMAPHORE | os.EFC_CLOEXEC)
3883+
fd = os.eventfd(1, os.EFD_SEMAPHORE | os.EFD_CLOEXEC)
38843884
try:
38853885
# acquire semaphore
38863886
v = os.eventfd_read(fd)

0 commit comments

Comments
 (0)