From 233eac42d44d28ff921185fe06fa01bff3e46315 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 3 Feb 2014 14:08:00 -0500 Subject: [PATCH] remove extra backtick --- Doc/library/asyncio-subprocess.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/asyncio-subprocess.rst b/Doc/library/asyncio-subprocess.rst index 04610aa0f94..4c399c6abf1 100644 --- a/Doc/library/asyncio-subprocess.rst +++ b/Doc/library/asyncio-subprocess.rst @@ -8,7 +8,7 @@ Create a subproces .. function:: create_subprocess_shell(cmd, stdin=None, stdout=None, stderr=None, loop=None, limit=None, \*\*kwds) - Run the shell command *cmd* (:class:`str`)`. Return a :class:`Process` + Run the shell command *cmd* given as a string. Return a :class:`Process` instance. This function returns a :ref:`coroutine object `.