Fix stylistic nit in glob documentation

The test is unnecessary.
This commit is contained in:
Fabian Homborg 2016-03-03 10:30:27 +01:00
parent e3968ba872
commit 333415f42a

View file

@ -421,7 +421,7 @@ ls *.foo
# Lists the .foo files, or warns if there aren't any.
set foos *.foo
if test (count $foos) -ge 1
if count $foos >/dev/null
ls $foos
end
# Lists the .foo files, if any.