summaryrefslogtreecommitdiff
path: root/Modules/fcntlmodule.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-06-30 01:54:04 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2003-06-30 01:54:04 +0000
commit4730880d76b127c5e091b064512906f66356d1f8 (patch)
treea839a686be6764c4bf09e9a74373b88be4a7817a /Modules/fcntlmodule.c
parent79b0ae12fdb6ce4b0d827ffb97fd3a59bee10c00 (diff)
downloadcpython-git-4730880d76b127c5e091b064512906f66356d1f8.tar.gz
Fix typo, refer to proper argument name
Diffstat (limited to 'Modules/fcntlmodule.c')
-rw-r--r--Modules/fcntlmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c
index bb8548d251..9894c4307e 100644
--- a/Modules/fcntlmodule.c
+++ b/Modules/fcntlmodule.c
@@ -199,7 +199,7 @@ PyDoc_STRVAR(ioctl_doc,
"ioctl(fd, opt[, arg[, mutate_flag]])\n\
\n\
Perform the requested operation on file descriptor fd. The operation is\n\
-defined by op and is operating system dependent. Typically these codes are\n\
+defined by opt and is operating system dependent. Typically these codes are\n\
retrieved from the fcntl or termios library modules.\n\
\n\
The argument arg is optional, and defaults to 0; it may be an int or a\n\