docs/config: consistify include.path examples

Most of the include examples use "foo.inc", but some use "foo". Since the string of examples are meant to show variations and how they differ, it's a good idea to change only one thing at a time. The filename differences are not relevant to what we're trying to show. Signed-off-by: Jeff King <peff@peff.net> Reviewed-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Jeff King committed May 11, 2017 at 05:14 UTC ce933ebd5a4a68a1042661499c05368bb60fd523
1 file changed +2 -2
Documentation/config.txt
+2 -2
@@ -172,8 +172,8 @@ Example
172
173 [include]
174 path = /path/to/foo.inc ; include by absolute path
175 - path = foo ; find "foo" relative to the current file
176 - path = ~/foo ; find "foo" in your `$HOME` directory
175 + path = foo.inc ; find "foo.inc" relative to the current file
176 + path = ~/foo.inc ; find "foo.inc" in your `$HOME` directory
177
178 ; include if $GIT_DIR is /path/to/foo/.git
179 [includeIf "gitdir:/path/to/foo/.git"]