Skip to content

Commit

Permalink
Fix paste_linter() lints
Browse files Browse the repository at this point in the history
  • Loading branch information
IndrajeetPatil committed May 11, 2024
1 parent 99afa8d commit 2823db4
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 2823db4

Please sign in to comment.