summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-01-02 22:07:06 (GMT)
committerGeorg Brandl <georg@python.org>2006-01-02 22:07:06 (GMT)
commit6bc6ed8b5554e17d634b25aa07900c2852687222 (patch)
tree33fdb360d2095790fb23c1bddbfb146ee3c86271 /Doc
parent5b43126e03143ec52fa00ffcdb40584c58512694 (diff)
downloadcpython-6bc6ed8b5554e17d634b25aa07900c2852687222.zip
cpython-6bc6ed8b5554e17d634b25aa07900c2852687222.tar.gz
cpython-6bc6ed8b5554e17d634b25aa07900c2852687222.tar.bz2
Bug #1395597: doc typo
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/libos.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex
index 148d2da..325b8fe 100644
--- a/Doc/lib/libos.tex
+++ b/Doc/lib/libos.tex
@@ -832,9 +832,9 @@ the client opens it for writing. Note that \function{mkfifo()}
doesn't open the FIFO --- it just creates the rendezvous point.
\end{funcdesc}
-\begin{funcdesc}{mknod}{path\optional{, mode=0600, device}}
+\begin{funcdesc}{mknod}{filename\optional{, mode=0600, device}}
Create a filesystem node (file, device special file or named pipe)
-named filename. \var{mode} specifies both the permissions to use and
+named \var{filename}. \var{mode} specifies both the permissions to use and
the type of node to be created, being combined (bitwise OR) with one
of S_IFREG, S_IFCHR, S_IFBLK, and S_IFIFO (those constants are
available in \module{stat}). For S_IFCHR and S_IFBLK, \var{device}