summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2012-04-03 08:46:48 -0400
committerR David Murray <rdmurray@bitdance.com>2012-04-03 08:46:48 -0400
commit30eea33907f9c7f6013af9b9adc801855ecd08a4 (patch)
treef8001bfae62031f623c2b66356f31dd2d88e2b93 /Doc
parent726390c33e8e5775e84b504f33a60ed3a19824d8 (diff)
downloadcpython-30eea33907f9c7f6013af9b9adc801855ecd08a4.tar.gz
#14481: fix formatting of example in subprocess docs.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/subprocess.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
index b7e87ab302..90a01d0a8f 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -735,7 +735,7 @@ The p1.stdout.close() call after starting the p2 is important in order for p1
to receive a SIGPIPE if p2 exits before p1.
Alternatively, for trusted input, the shell's own pipeline support may still
-be used directly:
+be used directly::
output=`dmesg | grep hda`
# becomes