diff --git a/DESCRIPTION b/DESCRIPTION index 1c634a65..beac2a2a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -50,5 +50,4 @@ Config/testthat/edition: 3 Encoding: UTF-8 LazyData: true Roxygen: list(markdown = TRUE) -RoxygenNote: 7.2.3 -SystemRequirements: C++11 +RoxygenNote: 7.3.0 diff --git a/NEWS.md b/NEWS.md index ad79ee57..d0545815 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,7 @@ # tidyr (development version) -* `pivot_wider` now uses `.by` and `|>` syntax for the dplyr helper message to identify duplicates (@boshek, #1516) +* `pivot_wider` now uses `.by` and `|>` syntax for the dplyr helper message to + identify duplicates (@boshek, #1516) # tidyr 1.3.0 diff --git a/R/dep-lazyeval.R b/R/dep-lazyeval.R index 2087abc4..828e9841 100644 --- a/R/dep-lazyeval.R +++ b/R/dep-lazyeval.R @@ -50,7 +50,6 @@ drop_na_.data.frame <- function(data, vars) { } #' @rdname deprecated-se -#' @param expand_cols Character vector of column names to be expanded. #' @export expand_ <- function(data, dots, ...) { lifecycle::deprecate_warn("1.0.0", "expand_()", "expand()", always = TRUE) diff --git a/R/utils.R b/R/utils.R index 5ae6dcf1..a962d51e 100644 --- a/R/utils.R +++ b/R/utils.R @@ -37,7 +37,7 @@ last <- function(x) x[[length(x)]] #' the naming strategy, otherwise you're better off adopting the new #' tidyverse standard with `name_repair = "universal"` #' -#' @param nm Character vector of names +#' @param nms Character vector of names #' @param prefix prefix Prefix to use for unnamed column #' @param sep Separator to use between name and unique suffix #' @keywords internal diff --git a/man/deprecated-se.Rd b/man/deprecated-se.Rd index eb57c01f..81fd208e 100644 --- a/man/deprecated-se.Rd +++ b/man/deprecated-se.Rd @@ -159,8 +159,6 @@ happens when there are too many pieces. There are three valid options: data, filling in missing combinations with \code{fill}.} \item{from}{Names of existing columns as character vector} - -\item{expand_cols}{Character vector of column names to be expanded.} } \description{ \ifelse{html}{\href{https://lifecycle.r-lib.org/articles/stages.html#deprecated}{\figure{lifecycle-deprecated.svg}{options: alt='[Deprecated]'}}}{\strong{[Deprecated]}} diff --git a/man/tidyr_legacy.Rd b/man/tidyr_legacy.Rd index 9d0fca9e..6790d770 100644 --- a/man/tidyr_legacy.Rd +++ b/man/tidyr_legacy.Rd @@ -7,11 +7,11 @@ tidyr_legacy(nms, prefix = "V", sep = "") } \arguments{ +\item{nms}{Character vector of names} + \item{prefix}{prefix Prefix to use for unnamed column} \item{sep}{Separator to use between name and unique suffix} - -\item{nm}{Character vector of names} } \description{ Ensures all column names are unique using the approach found in