about summary refs log tree commit diff
path: root/Etc
diff options
context:
space:
mode:
authorPeter Stephenson <pws@zsh.org>2014-11-20 17:12:15 +0000
committerPeter Stephenson <pws@zsh.org>2014-11-20 17:12:15 +0000
commita3cc409b9b6df92c9517926861d6cdae537f0456 (patch)
treec72ac5e62333626e0d15d9b2a7179b9e36aff2ec /Etc
parentfe17d3c113d0793d9dae2f0a2d8ff4bc4142b6b0 (diff)
downloadzsh-a3cc409b9b6df92c9517926861d6cdae537f0456.tar.gz
zsh-a3cc409b9b6df92c9517926861d6cdae537f0456.tar.xz
zsh-a3cc409b9b6df92c9517926861d6cdae537f0456.zip
unposted but c.f. 33723: typo in FAQ
sed argument had unterminated substitution.
Diffstat (limited to 'Etc')
-rw-r--r--Etc/FAQ.yo2
1 files changed, 1 insertions, 1 deletions
diff --git a/Etc/FAQ.yo b/Etc/FAQ.yo
index dcb2ec579..7d4b86ec3 100644
--- a/Etc/FAQ.yo
+++ b/Etc/FAQ.yo
@@ -1763,7 +1763,7 @@ sect(Why is my output duplicated with `tt(foo 2>&1 >foo.out | bar)'?)
   actually see is that the output is going both to the pipe and into the
   file.  To be more explicit, here's the same example with real commands:
   verb(
-    % { print output; print error >&2 } 2>&1 >foo.out | sed 's/error/erratic'
+    % { print output; print error >&2 } 2>&1 >foo.out | sed 's/error/erratic/'
     erratic
     output
     % cat foo.out