summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-07-29 15:43:13 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2006-07-29 15:43:13 (GMT)
commit8d9a01a1f2eec6adfa736cb3b2439645d3a5c61e (patch)
treef5274fe37a5e360d63865697d1d47afa77758596
parent2d20a5fe99449ee2609264b1060a592f51845d37 (diff)
downloadcpython-8d9a01a1f2eec6adfa736cb3b2439645d3a5c61e.zip
cpython-8d9a01a1f2eec6adfa736cb3b2439645d3a5c61e.tar.gz
cpython-8d9a01a1f2eec6adfa736cb3b2439645d3a5c61e.tar.bz2
Tweak wording
-rw-r--r--Modules/fcntlmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c
index 49a9144..4e49a7d 100644
--- a/Modules/fcntlmodule.c
+++ b/Modules/fcntlmodule.c
@@ -290,7 +290,7 @@ PyDoc_STRVAR(flock_doc,
"flock(fd, operation)\n\
\n\
Perform the lock operation op on file descriptor fd. See the Unix \n\
-manual flock(3) for details. (On some systems, this function is\n\
+manual page for flock(3) for details. (On some systems, this function is\n\
emulated using fcntl().)");