Skip to content

Commit

Permalink
make new behaviour default for fork
Browse files Browse the repository at this point in the history
  • Loading branch information
robchallen committed Oct 18, 2024
1 parent 659ccf0 commit 68a6fdd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: roxygen2
Title: In-Line Documentation for R
Version: 7.3.2.9002
Version: 7.3.2.9003
Authors@R: c(
person("Hadley", "Wickham", , "hadley@posit.co", role = c("aut", "cre", "cph"),
comment = c(ORCID = "0000-0003-4757-117X")),
Expand Down
4 changes: 2 additions & 2 deletions R/rd-inherit.R
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ merge.rd_section_inherit_section <- function(x, y, ...) {
rd_section_inherit_section(c(x$value$source, y$value$source), c(x$value$title, y$value$title))
}

# set recurse to true to make it default of @inheritDotParams (and @interitAllDotParams)
rd_section_inherit_dot_params <- function(source, args, recurse = FALSE) {
# set recurse to true to make it default of @inheritDotParams (and @inheritAllDotParams)
rd_section_inherit_dot_params <- function(source, args, recurse = TRUE) {
stopifnot(is.character(source), is.character(args))
stopifnot(length(source) == length(args))

Expand Down

0 comments on commit 68a6fdd

Please sign in to comment.