From 05f31bfef3fe3d0a18886b6912711aefd98bddc1 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 6 Nov 2013 01:48:45 +0100 Subject: [PATCH] doc: fix typo --- Doc/library/os.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/os.rst b/Doc/library/os.rst index f8b1025e79e..67f94ac8f3f 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -962,7 +962,7 @@ or `the MSDN `_ 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 `. Availability: Unix, Windows.