[Python-checkins] commit of r41881 - python/trunk/Doc/lib/libos.tex

reinhold.birkenfeld python-checkins at python.org
Mon Jan 2 23:07:07 CET 2006


Author: reinhold.birkenfeld
Date: Mon Jan  2 23:07:06 2006
New Revision: 41881

Modified:
   python/trunk/Doc/lib/libos.tex
Log:
Bug #1395597: doc typo



Modified: python/trunk/Doc/lib/libos.tex
==============================================================================
--- python/trunk/Doc/lib/libos.tex	(original)
+++ python/trunk/Doc/lib/libos.tex	Mon Jan  2 23:07:06 2006
@@ -832,9 +832,9 @@
 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}


More information about the Python-checkins mailing list