Skip to content
Merged
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
2 changes: 1 addition & 1 deletion R/as_bk_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#' @param x The object to coerce. Currently supports conversion of
#' [rapid::class_security_schemes()] objects.
#'
#' @return A list.
#' @returns A list.
#' @keywords internal
as_bk_data <- S7::new_generic("as_bk_data", dispatch_args = "x")

Expand Down
4 changes: 2 additions & 2 deletions R/generate_pkg-setup.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#'
#' @inheritParams .is_pkg
#'
#' @return `NULL`, invisibly.
#' @returns `NULL`, invisibly.
#' @keywords internal
.assert_is_pkg <- function(base_path = usethis::proj_get()) {
if (.is_pkg(base_path)) {
Expand All @@ -20,7 +20,7 @@
#'
#' @param base_path The root URL of the current project.
#'
#' @return `TRUE` if the project is a package, `FALSE` if not.
#' @returns `TRUE` if the project is a package, `FALSE` if not.
#' @keywords internal
.is_pkg <- function(base_path = usethis::proj_get()) {
root_file <- rlang::try_fetch(
Expand Down
2 changes: 1 addition & 1 deletion R/generate_pkg-template.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#' @param target The name of the file to create.
#' @param dir The directory where the file should be created.
#'
#' @return The path to the generated or updated file, invisibly.
#' @returns The path to the generated or updated file, invisibly.
#' @keywords internal
.bk_use_template <- function(
template,
Expand Down
2 changes: 1 addition & 1 deletion R/generate_pkg.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#'
#' @inheritParams .shared-params
#'
#' @return A character vector of paths to files that were added or updated,
#' @returns A character vector of paths to files that were added or updated,
#' invisibly.
#' @export
generate_pkg <- function(
Expand Down
2 changes: 1 addition & 1 deletion R/use_beekeeper.R
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#' generated by reading such a document.
#' @inheritParams .shared-params
#'
#' @return The path to the configuration file, invisibly. The config file is
#' @returns The path to the configuration file, invisibly. The config file is
#' written as a side effect of this function. The rapid object is also
#' written, and the path to that file is saved in the config file.
#' @export
Expand Down
Loading