Skip to content

Commit d6c93fb

Browse files
authored
Fix suppress option for directives-in-multiple-files warning
Used the wrong option flag.
1 parent dd1a859 commit d6c93fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

website/docs/guides/advanced/verbosity.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,10 @@ That can be done by passing an appropriate option or by setting the appropriate
110110

111111
It is generally advised to not spread the `using` directives in multiple files, and put them in the
112112
optional `project.scala` configuration file.
113-
The relevant warnings can be suppressed with the `--suppress-outdated-dependency-warning` option.
113+
The relevant warnings can be suppressed with the `--suppress-warning-directives-in-multiple-files` option.
114114

115115
```bash
116-
scala-cli Deps1.sc Deps2.sc --suppress-outdated-dependency-warning
116+
scala-cli Deps1.sc Deps2.sc --suppress-warning-directives-in-multiple-files
117117
```
118118

119119
Alternatively, the global config key `suppress-warning.directives-in-multiple-files` can be used.
@@ -158,4 +158,4 @@ Alternatively, the global config key `suppress-warning.outdated-dependencies-fil
158158

159159
```bash
160160
scala-cli config suppress-warning.outdated-dependencies-files true
161-
```
161+
```

0 commit comments

Comments
 (0)