summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-11-06 00:48:45 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-11-06 00:48:45 (GMT)
commit05f31bfef3fe3d0a18886b6912711aefd98bddc1 (patch)
tree22e353ba48aabb1755a059263fd7eafa439c728a /Doc
parent24f125871bbe297f72991f7f15ea668ff4a874e5 (diff)
downloadcpython-05f31bfef3fe3d0a18886b6912711aefd98bddc1.zip
cpython-05f31bfef3fe3d0a18886b6912711aefd98bddc1.tar.gz
cpython-05f31bfef3fe3d0a18886b6912711aefd98bddc1.tar.bz2
doc: fix typo
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/os.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index f8b1025..67f94ac 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -962,7 +962,7 @@ or `the MSDN <http://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Window
.. function:: pipe()
Create a pipe. Return a pair of file descriptors ``(r, w)`` usable for
- reading and writing, respectively. The new file descriptor are
+ reading and writing, respectively. The new file descriptor is
:ref:`non-inheritable <fd_inheritance>`.
Availability: Unix, Windows.