fix stupid typo introduced by d9b30ab09

This commit is contained in:
Kurtis Rader 2017-03-14 13:17:53 -07:00
parent d9b30ab090
commit 085a9b9267
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
function export --description 'Set env variable. Alias for `set -gx` for bash compatibility.' function export --description 'Set env variable. Alias for `set -gx` for bash compatibility.'
if not set -q argv[0] if not set -q argv[1]
set -x set -x
return 0 return 0
end end

View file

@ -1,5 +1,5 @@
function setenv --description 'Set env variable. Alias for `set -gx` for csh compatibility.' function setenv --description 'Set env variable. Alias for `set -gx` for csh compatibility.'
if not set -q argv[0] if not set -q argv[1]
set -x set -x
return 0 return 0
end end