Skip to content

Commit

Permalink
remove no-op usage of sep (#1001)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelChirico authored Mar 26, 2022
1 parent 6c3e0ed commit 309db27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/lint.R
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ lint <- function(filename, linters = NULL, cache = FALSE, ..., parse_settings =
} else {
inline_data <- TRUE
if (length(text) > 1) {
text <- paste(text, sep = "", collapse = "\n")
text <- paste(text, collapse = "\n")
}
}

Expand Down

0 comments on commit 309db27

Please sign in to comment.