Skip to content

Commit

Permalink
Update vctrs topic name
Browse files Browse the repository at this point in the history
  • Loading branch information
DavisVaughan committed Nov 3, 2023
1 parent 8eaee55 commit 81d0503
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@

* `pick()` now returns a 1 row, 0 column tibble when `...` evaluates to an
empty selection. This makes it more compatible with [tidyverse recycling
rules](https://vctrs.r-lib.org/reference/vector_recycling_rules.html) in some
rules](https://vctrs.r-lib.org/reference/theory-faq-recycling.html) in some
edge cases (#6685).

* `if_else()` and `case_when()` again accept logical conditions that have
Expand Down
2 changes: 1 addition & 1 deletion R/bind-cols.R
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#'
#' @param ... Data frames to combine. Each argument can either be a data frame,
#' a list that could be a data frame, or a list of data frames.
#' Inputs are [recycled][vctrs::vector_recycling_rules] to the same length,
#' Inputs are [recycled][vctrs::theory-faq-recycling] to the same length,
#' then matched by position.
#' @param .name_repair One of `"unique"`, `"universal"`, or
#' `"check_unique"`. See [vctrs::vec_as_names()] for the meaning of these
Expand Down
4 changes: 2 additions & 2 deletions R/case-match.R
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@
#' multiple cases, the first match is used.
#'
#' The RHS inputs will be coerced to their common type. Each RHS input will be
#' [recycled][vctrs::vector_recycling_rules] to the size of `.x`.
#' [recycled][vctrs::theory-faq-recycling] to the size of `.x`.
#'
#' @param .default The value used when values in `.x` aren't matched by any of
#' the LHS inputs. If `NULL`, the default, a missing value will be used.
#'
#' `.default` is [recycled][vctrs::vector_recycling_rules] to the size of
#' `.default` is [recycled][vctrs::theory-faq-recycling] to the size of
#' `.x`.
#'
#' @param .ptype An optional prototype declaring the desired output type. If
Expand Down
2 changes: 1 addition & 1 deletion R/coalesce.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#' @param ... <[`dynamic-dots`][rlang::dyn-dots]>
#'
#' One or more vectors. These will be
#' [recycled][vctrs::vector_recycling_rules] against each other, and will be
#' [recycled][vctrs::theory-faq-recycling] against each other, and will be
#' cast to their common type.
#'
#' @param .ptype An optional prototype declaring the desired output type. If
Expand Down
2 changes: 1 addition & 1 deletion R/if-else.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#' @param true,false Vectors to use for `TRUE` and `FALSE` values of
#' `condition`.
#'
#' Both `true` and `false` will be [recycled][vctrs::vector_recycling_rules]
#' Both `true` and `false` will be [recycled][vctrs::theory-faq-recycling]
#' to the size of `condition`.
#'
#' `true`, `false`, and `missing` (if used) will be cast to their common type.
Expand Down
2 changes: 1 addition & 1 deletion R/na-if.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#' `y` is [cast][vctrs::theory-faq-coercion] to the type of `x` before
#' comparison.
#'
#' `y` is [recycled][vctrs::vector_recycling_rules] to the size of `x` before
#' `y` is [recycled][vctrs::theory-faq-recycling] to the size of `x` before
#' comparison. This means that `y` can be a vector with the same size as `x`,
#' but most of the time this will be a single value.
#' @return A modified version of `x` that replaces any values that
Expand Down

0 comments on commit 81d0503

Please sign in to comment.