diff options
author | Georg Brandl <georg@python.org> | 2006-01-02 22:07:25 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-01-02 22:07:25 (GMT) |
commit | 3951b1cfc3eb2c005edf48dad6838a3ded09dddc (patch) | |
tree | 1400f7aa6bc2a0e19cb63348f2a6fb8c7ce9d534 /Doc | |
parent | 3dd53172421c8e052b2d6f33adc46432fb63818b (diff) | |
download | cpython-3951b1cfc3eb2c005edf48dad6838a3ded09dddc.zip cpython-3951b1cfc3eb2c005edf48dad6838a3ded09dddc.tar.gz cpython-3951b1cfc3eb2c005edf48dad6838a3ded09dddc.tar.bz2 |
bug #1395597: doc typo
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libos.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex index 7150454..72513cd 100644 --- a/Doc/lib/libos.tex +++ b/Doc/lib/libos.tex @@ -812,9 +812,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} |