Skip to content

Commit

Permalink
chore: update documentation (#1599)
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico authored Jan 19, 2024
1 parent 91c7730 commit 3fc4caa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/src/content/docs/guides/how-biome-works.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -166,11 +166,11 @@ The syntax and meaning of these two options loosely follow the [globset rules](h
> the pattern, then it matches zero or more directories. Using `**` anywhere
> else is illegal (N.B. the glob `**` is allowed and means "match everything").
>
> - `{a,b}` matches `a` or `b` where `a` and `b` are arbitrary glob patterns.
> (N.B. Nesting `{...}` is not currently allowed.)
> - `[ab]` matches `a` or `b` where `a` and `b` are characters. Use
> `[!ab]` to match any character except for `a` and `b`.
> - Metacharacters such as `*` and `?` can be escaped with character class
> notation. e.g., `[*]` matches `*`.
Check the [wikipedia page](https://en.wikipedia.org/wiki/Glob_(programming)) for more information.


0 comments on commit 3fc4caa

Please sign in to comment.