Skip to content

Commit 1f60831

Browse files
Merge branch 'main' into f1032-remove-blank-lines-after-and-before-parens
2 parents 0d67987 + 0f9625a commit 1f60831

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

R/roxygen-examples-parse.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,6 @@ needs_rd_emulation <- function(roxygen) {
179179
#' @keywords internal
180180
post_parse_roxygen <- function(raw) {
181181
raw %>%
182-
paste0(collapse = "") %>%
182+
paste(collapse = "") %>%
183183
convert_newlines_to_linebreaks()
184184
}

R/utils-cache.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ hash_standardize <- function(text) {
99
text %>%
1010
convert_newlines_to_linebreaks() %>%
1111
enc2utf8() %>%
12-
paste0(collapse = "\n") %>%
12+
paste(collapse = "\n") %>%
1313
list()
1414
}
1515

touchstone/config.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
22
"os": "ubuntu-latest",
3-
"r": "4.2",
4-
"rspm": "https://packagemanager.rstudio.com/all/__linux__/focal/2023-03-01",
3+
"r": "4.4",
4+
"rspm": "https://packagemanager.rstudio.com/all/__linux__/focal/2024-05-01",
55
"benchmarking_repo": "lorenzwalthert/here",
66
"benchmarking_ref": "bf0167746da7fe4fb156082bad93c9e5cd3386bd",
77
"benchmarking_path": "touchstone/sources/here",
8-
98
}

0 commit comments

Comments
 (0)