Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tweak documentation for pkg argument #509

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ License: GPL-3
Encoding: UTF-8
LazyData: true
ByteCompile: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3.9000
Depends:
R (>= 3.5)
Expand Down
10 changes: 5 additions & 5 deletions R/package.R
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
#' package library.
#'
#' @param pkg Package names or package references. E.g.
#' - `ggplot2`: package from CRAN, Bioconductor or a CRAN-like repository
#' - `ggplot2` or `cran::ggplot2`: package from CRAN, Bioconductor or a CRAN-like repository
#' in general,
#' - `tidyverse/ggplot2`: package from GitHub,
#' - `tidyverse/ggplot2@v3.4.0`: package from GitHub tag or branch,
#' - `https://examples.com/.../ggplot2_3.3.6.tar.gz`: package from URL,
#' - `.`: package in the current working directory.
#' - `tidyverse/ggplot2` or `github::tidyverse/ggplot2`: package from GitHub,
#' - `tidyverse/ggplot2@v3.4.0` or `github::tidyverse/ggplot2@v3.4.0`: package from GitHub tag or branch,
#' - `url::https://examples.com/.../ggplot2_3.3.6.tar.gz`: package from URL,
#' - `.` or `local::.`: package in the current working directory.
#'
#' See "[Package sources]" for more details.
#' @param lib Package library to install the packages to. Note that _all_
Expand Down
85 changes: 13 additions & 72 deletions man/cache.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading