Skip to content

Commit

Permalink
fix(tools/schema): corrects two typos
Browse files Browse the repository at this point in the history
  • Loading branch information
sverweij committed Mar 24, 2024
1 parent b966c0a commit 70008a0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/schema/configuration.schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/schema/cruise-result.schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tools/schema/restrictions.mjs
Expand Up @@ -236,7 +236,7 @@ export default {
description:
"Matches when the number of times the 'to' module is used falls below (<) " +
"this number. Caveat: only works in concert with path and pathNot restrictions " +
"in the from and to parts of the rule; other conditions will be ignored." +
"in the from and to parts of the rule; other conditions will be ignored. " +
"E.g. to flag modules that are used only once or not at all, use 2 here.",
minimum: 0,
maximum: 100,
Expand All @@ -246,7 +246,7 @@ export default {
description:
"Matches when the number of times the 'to' module is used raises above (>) " +
"this number. Caveat: only works in concert with path and pathNot restrictions " +
"in the from and to parts of the rule; other conditions will be ignored." +
"in the from and to parts of the rule; other conditions will be ignored. " +
"E.g. to flag modules that are used more than 10 times, use 10 here.",
minimum: 0,
maximum: 100,
Expand Down

0 comments on commit 70008a0

Please sign in to comment.