aboutsummaryrefslogtreecommitdiffhomepage
path: root/share
diff options
context:
space:
mode:
authorGravatar Kenneth Vestergaard <kvs@binarysolutions.dk>2013-03-09 00:52:36 +0100
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-03-09 13:03:28 -0800
commit1afdbb848ea6b2b77087ca2296690bcfa2eceed7 (patch)
tree873df8ba04b9da489a999e0e1bdbfbd9f441bc07 /share
parent4d19bb17a9161fc085e7b308d1ac30ec74186c33 (diff)
Minor fix to order of arguments in error-message.
Diffstat (limited to 'share')
-rw-r--r--share/functions/vared.fish2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/functions/vared.fish b/share/functions/vared.fish
index feadaadc..fe548dd1 100644
--- a/share/functions/vared.fish
+++ b/share/functions/vared.fish
@@ -39,7 +39,7 @@ function vared --description "Edit variable value"
end
else
- printf (_ '%s: %s is an array variable. Use %svared%s %s[n] to edit the n:th element of %s\n') $argv (set_color $fish_color_command) (set_color $fish_color_normal) vared $argv $argv
+ printf (_ '%s: %s is an array variable. Use %svared%s %s[n] to edit the n:th element of %s\n') vared $argv (set_color $fish_color_command) (set_color $fish_color_normal) $argv $argv
end
end
else