Skip to content

Commit

Permalink
Link to topic file rather than alias
Browse files Browse the repository at this point in the history
This change will prevent Rd warnings during "Install and Restart" on Windows. However, it may make the link more fragile.
r-lib/roxygen2#707
https://stackoverflow.com/questions/48430093/how-do-i-resolve-rd-warning-missing-file-link-when-building-packages-in-rstudi/48478698#48478698
  • Loading branch information
jmgirard committed Apr 25, 2019
1 parent e8fb9d7 commit 7991f89
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions inst/templates/tidy-eval.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@
#'
#' @description
#'
#' * \code{\link[rlang]{sym}()} creates a symbol from a string and
#' \code{\link[rlang]{syms}()} creates a list of symbols from a
#' * \code{\link[rlang:quotation]{sym}()} creates a symbol from a string and
#' \code{\link[rlang:quotation]{syms}()} creates a list of symbols from a
#' character vector.
#'
#' * \code{\link[rlang]{expr}()} and \code{\link[rlang]{quo}()} quote
#' * \code{\link[rlang:quotation]{expr}()} and \code{\link[rlang:quotation]{quo}()} quote
#' one expression. `quo()` wraps the quoted expression in a quosure.
#'
#' The plural variants [rlang::exprs()] and
#' \code{\link[rlang]{quos}()} return a list of quoted expressions or
#' The plural variants \code{\link[rlang:quotation]{exprs()}} and
#' \code{\link[rlang:quotation]{quos}()} return a list of quoted expressions or
#' quosures.
#'
#' * \code{\link[rlang]{enexpr}()} and \code{\link[rlang]{enquo}()}
#' * \code{\link[rlang:quotation]{enexpr}()} and \code{\link[rlang:quotation]{enquo}()}
#' capture the expression supplied as argument by the user of the
#' current function (`enquo()` wraps this expression in a quosure).
#'
#' \code{\link[rlang]{enexprs}()} and \code{\link[rlang]{enquos}()}
#' \code{\link[rlang:quotation]{enexprs}()} and \code{\link[rlang:quotation]{enquos}()}
#' capture multiple expressions supplied as arguments, including
#' `...`.
#'
Expand Down

0 comments on commit 7991f89

Please sign in to comment.