Skip to content

Commit

Permalink
Merge pull request #1204 from r-lib/clean-new-lints
Browse files Browse the repository at this point in the history
Fix `paste_linter()` lints
  • Loading branch information
IndrajeetPatil authored May 11, 2024
2 parents 99afa8d + 2823db4 commit 4ec2a1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/roxygen-examples-parse.R
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,6 @@ needs_rd_emulation <- function(roxygen) {
#' @keywords internal
post_parse_roxygen <- function(raw) {
raw %>%
paste0(collapse = "") %>%
paste(collapse = "") %>%
convert_newlines_to_linebreaks()
}
2 changes: 1 addition & 1 deletion R/utils-cache.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ hash_standardize <- function(text) {
text %>%
convert_newlines_to_linebreaks() %>%
enc2utf8() %>%
paste0(collapse = "\n") %>%
paste(collapse = "\n") %>%
list()
}

Expand Down

0 comments on commit 4ec2a1f

Please # to comment.