about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBart Schaefer <barts@users.sourceforge.net>2000-10-18 03:53:27 +0000
committerBart Schaefer <barts@users.sourceforge.net>2000-10-18 03:53:27 +0000
commitc34084aa0e6fe14588ab7bfae288999a50cfa8f8 (patch)
tree3f6d224bec760156d24b4cebfb62971a95e9a841
parent1ccde17687df93bdcbba70ced0bc0c864ec263bb (diff)
downloadzsh-c34084aa0e6fe14588ab7bfae288999a50cfa8f8.tar.gz
zsh-c34084aa0e6fe14588ab7bfae288999a50cfa8f8.tar.xz
zsh-c34084aa0e6fe14588ab7bfae288999a50cfa8f8.zip
Typo.
-rw-r--r--ChangeLog4
-rw-r--r--Functions/Misc/zmv2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6b5a2e886..c28a1ed36 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-10-17  Bart Schaefer  <schaefer@brasslantern.com>
+
+	* unposted: Functions/Misc/zmv: Small typo in example in comment.
+
 2000-10-17  Sven Wischnowsky  <wischnow@zsh.org>
 
 	* 13005: Src/Zle/computil.c: make _arguments ignore unspecified
diff --git a/Functions/Misc/zmv b/Functions/Misc/zmv
index 8dbed7dd9..b4f9b94ba 100644
--- a/Functions/Misc/zmv
+++ b/Functions/Misc/zmv
@@ -35,7 +35,7 @@
 # around glob qualifiers, if you use the -Q option, and globbing flags) may
 # be referred to by a positional parameter in <outstring>, i.e. the first
 # (...) matched is given by $1, and so on.  For example,
-#   zmv '([a-z])(*).txt' '${(U)1}$2.txt'
+#   zmv '([a-z])(*).txt' '${(C)1}$2.txt'
 # renames algernon.txt to Algernon.txt, boris.txt to Boris.txt and so on.
 # The original file matched can be referred to as $f in the second
 # argument; accidental or deliberate use of other parameters is at owner's