]> git.ipfire.org Git - thirdparty/git.git/commitdiff
gitignore.txt: change "folder" to "directory"
authorMartin Ågren <martin.agren@gmail.com>
Sun, 24 Oct 2021 17:09:16 +0000 (19:09 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 25 Oct 2021 18:06:56 +0000 (11:06 -0700)
We prefer "directory" over "folder" when discussing the file system
concept. Change this instance for consistency -- indeed, even within
this paragraph, we already use "directory".

Signed-off-by: Martin Ågren <martin.agren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/gitignore.txt

index f8a1fc20147ed324177b5b351bafeff3bf5d64e0..f2738b10db6b2be5e7babb74fbe013faecd425d1 100644 (file)
@@ -155,7 +155,7 @@ accessed from the index or a tree versus from the filesystem.
 EXAMPLES
 --------
 
- - The pattern `hello.*` matches any file or folder
+ - The pattern `hello.*` matches any file or directory
    whose name begins with `hello.`. If one wants to restrict
    this only to the directory and not in its subdirectories,
    one can prepend the pattern with a slash, i.e. `/hello.*`;