From 333415f42a8fb837b4867edda7118cd50d59a485 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Thu, 3 Mar 2016 10:30:27 +0100 Subject: [PATCH] Fix stylistic nit in glob documentation The test is unnecessary. --- doc_src/index.hdr.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc_src/index.hdr.in b/doc_src/index.hdr.in index a0f7ec0a2..ed497a992 100644 --- a/doc_src/index.hdr.in +++ b/doc_src/index.hdr.in @@ -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.