File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ the legacy endpoint scope.
66
66
67
67
The crates scope can be left empty to allow the token to act on all the crates
68
68
owned by the user, or it can contain the comma-separated list of crate names
69
- the token can interact with. Crate names can contain ` * ` to match one or more
69
+ the token can interact with. Crate names can contain ` * ` to match zero or more
70
70
characters.
71
71
72
72
For example, a crates scope of ` serde,serde-* ` allows the token to act on the
@@ -116,7 +116,7 @@ following these rules:
116
116
117
117
* ** ` ^ ` ** is added at the start of the pattern, and ** ` $ ` ** is added at the end of it.
118
118
* ** ` , ` ** is desugared into ` | ` , separating multiple patterns.
119
- * ** ` * ` ** is desugared into ` .+ ` , matching one or more characters greedily.
119
+ * ** ` * ` ** is desugared into ` .* ` , matching zero or more characters greedily.
120
120
* All other characters are quoted to prevent them from having a special meaning.
121
121
122
122
As an example, the following pattern:
You can’t perform that action at this time.
0 commit comments