Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
salim-b authored Jun 29, 2023
1 parent 16b472f commit 4cce96c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions R/doc-params.R
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#' Argument type: tidy-select
#'
#' @description
#' This page the describes the `<tidy-select>` argument modifier which indicates
#' This page describes the `<tidy-select>` argument modifier which indicates
#' the argument supports **tidy selections**. Tidy selection provides a concise
#' dialect of R for selecting variables based on their names or properties.
#'
#' Tidy selection is a variant of tidy evaluation. This means that inside
#' functions, tidy-select arguments require special attention, as described in
#' the Indirection section. If you've never heard of tidy evaluation before,
#' start with `vignette("programming")`.
#' the *Indirection* section below. If you've never heard of tidy evaluation
#' before, start with `vignette("programming")`.
#'
#'
#' # Overview of selection features
Expand All @@ -26,8 +26,8 @@
#' names to cause an error, e.g. `select(df, all_of(vars))`,
#' `select(df, !any_of(vars))`.
#'
#' * If you you want the user to supply a tidyselect specification in a
#' function argument, embrace the function argument, e.g.
#' * If you want the user to be able to supply a tidyselect specification in
#' a function argument, embrace the function argument, e.g.
#' `select(df, {{ vars }})`.
#'
#' @keywords internal
Expand Down

0 comments on commit 4cce96c

Please sign in to comment.