Skip to content

Commit

Permalink
Fix typo in gitignore docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Jun 7, 2021
1 parent ed0c8c6 commit 9efaaf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/src/reference/manifest.md
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ The patterns should be [gitignore]-style patterns. Briefly:
`foo`.
- `/**/` matches zero or more directories. For example, `a/**/b` matches
`a/b`, `a/x/b`, `a/x/y/b`, and so on.
- `!` prefix negates a pattern. For example, a pattern of `src/**.rs` and
- `!` prefix negates a pattern. For example, a pattern of `src/*.rs` and
`!foo.rs` would match all files with the `.rs` extension inside the `src`
directory, except for any file named `foo.rs`.

Expand Down

0 comments on commit 9efaaf1

Please sign in to comment.