1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-27 04:40:59 +01:00

31000: fix typo in example

This commit is contained in:
Bart Schaefer 2013-01-26 22:54:01 +00:00
parent 6265394d6b
commit 2b75cf571e
2 changed files with 6 additions and 2 deletions

View file

@ -2508,7 +2508,7 @@ example(modify-current-argument '${(qq)${(Q)ARG}}')
The following performs directory expansion on the command line
argument and replaces it by the absolute path:
example(expand-dir() {
example(expand-dir+LPAR()RPAR() {
REPLY=${~1}
REPLY=${REPLY:a}
}