#14481: fix formatting of example in subprocess docs.

This commit is contained in:
R David Murray 2012-04-03 08:46:48 -04:00
parent 80d50428ce
commit 28b8b94760

View file

@ -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