zshrc: fix typo in edfunc usage text
authorBernhard Tittelbach <bernhard@tittelbach.org>
Fri, 8 Jul 2011 10:24:33 +0000 (12:24 +0200)
committerMichael Prokop <mika@grml.org>
Thu, 21 Jul 2011 09:01:58 +0000 (11:01 +0200)
etc/zsh/zshrc

index 7194610..54ce024 100644 (file)
@@ -2789,7 +2789,7 @@ compdef _aliases edalias
 
 #f1# Edit a function via zle
 edfunc() {
-    [[ -z "$1" ]] && { echo "Usage: edfun <function_to_edit>" ; return 1 } || zed -f "$1" ;
+    [[ -z "$1" ]] && { echo "Usage: edfunc <function_to_edit>" ; return 1 } || zed -f "$1" ;
 }
 compdef _functions edfunc