Skip to content

Commit 0c92da2

Browse files
committed
.ci/lint.R: fix --help
1 parent 4e9c989 commit 0c92da2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.ci/lint.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
args = commandArgs(TRUE)
44
if (identical(args, '--help')) {
55
writeLines(c(
6-
'Usage: Rscript .ci/lint.R .ci/linters/<KIND> <WHERE> <WHAT> [PREPROCESS]',
6+
'Usage: Rscript .ci/lint.R .ci/linters/<KIND> <WHERE> <WHAT>',
77
'KIND must name the directory containing the *.R files defining the linter functions.',
88
'WHERE must name the directory containing the files to lint, e.g. "po", or "src".',
9-
"WHAT must contain the regular expression matching the files to lint, e.g., '[.]po$', or '[.][ch]$'.",
9+
"WHAT must contain the regular expression matching the files to lint, e.g., '[.]po$', or '[.][ch]$'."
1010
))
1111
q('no')
1212
}

0 commit comments

Comments
 (0)