diff --git a/eden/fs/docs/Globbing.md b/eden/fs/docs/Globbing.md index 8ca76409a0..663777dac5 100644 --- a/eden/fs/docs/Globbing.md +++ b/eden/fs/docs/Globbing.md @@ -1,11 +1,11 @@ -# EdenFS file globs +# EdenFS File Globs EdenFS supports glob patterns through the following interfaces: * Ignore files (e.g. `.gitignore`) * `globFiles` Thrift API -## Ignore files +## Ignore Files EdenFS uses *ignore files* to exclude files in the `getScmStatus` Thrift API (used by `hg status`, for example). The syntax for EdenFS' ignore files is @@ -13,7 +13,7 @@ compatible with the syntax for [`gitignore` files][gitignore] used by the Git version control system, even when an EdenFS checkout is backed by a Mercurial repository. -## Glob pattern magic +## Glob Pattern Magic EdenFS interprets the following tokens specially within glob patterns: @@ -29,7 +29,7 @@ EdenFS glob patterns are compatible with [`gitignore` patterns][gitignore] used by the Git version control system, even when an EdenFS checkout is backed by a Mercurial repository. -## Globbing with symlinks +## Globbing With Symlinks If a glob pattern matches a symlink exactly, `globFile` returns the symlink itself (and not its target) as a match.