We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 99afa8d + 2823db4 commit 4ec2a1fCopy full SHA for 4ec2a1f
R/roxygen-examples-parse.R
@@ -179,6 +179,6 @@ needs_rd_emulation <- function(roxygen) {
179
#' @keywords internal
180
post_parse_roxygen <- function(raw) {
181
raw %>%
182
- paste0(collapse = "") %>%
+ paste(collapse = "") %>%
183
convert_newlines_to_linebreaks()
184
}
R/utils-cache.R
@@ -9,7 +9,7 @@ hash_standardize <- function(text) {
9
text %>%
10
convert_newlines_to_linebreaks() %>%
11
enc2utf8() %>%
12
- paste0(collapse = "\n") %>%
+ paste(collapse = "\n") %>%
13
list()
14
15
0 commit comments