Skip to content

Commit ef5bc9e

Browse files
[3.13] gh-144233: Fix typo in os.eventfd documentation (GH-144234) (#144237)
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 f738386 commit ef5bc9e

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
@@ -3807,7 +3807,7 @@ features:
38073807
import os
38083808

38093809
# semaphore with start value '1'
3810-
fd = os.eventfd(1, os.EFD_SEMAPHORE | os.EFC_CLOEXEC)
3810+
fd = os.eventfd(1, os.EFD_SEMAPHORE | os.EFD_CLOEXEC)
38113811
try:
38123812
# acquire semaphore
38133813
v = os.eventfd_read(fd)

0 commit comments

Comments
 (0)