diff --git a/R/legacy_test.R b/R/legacy_test.R index 8d2bf012..4c71bc16 100644 --- a/R/legacy_test.R +++ b/R/legacy_test.R @@ -2,7 +2,7 @@ #' #' Tests a particular board, useful only when creating new boards. #' -#' @param name The name of the board to test. +#' @param board The name of the board to test. #' @param exclude Names of tests to exclude form test. #' @param suite The test suite to run, currently only `"versions"` or #' `default` are supported. diff --git a/R/pin.R b/R/pin.R index f3bb9a43..aacb2277 100644 --- a/R/pin.R +++ b/R/pin.R @@ -55,11 +55,9 @@ pin_load <- function(path, ...) { #' @param board The board to extended, retrieved with `board_get()`. #' @param name The name of the pin. #' @param path The path to store. -#' @param description The text patteren to find a pin. -#' @param type The type of pin being stored. #' @param pin_metadata A list of pin metadata describing the pin. Must contain #' `type` and `description`. -#' @param metadat Additional user supplied metadata. +#' @param metadata Additional user supplied metadata. #' @param custom_metadata Deprecated. Please use `metadata` instead. #' @param retrieve Should the pin be retrieved after being created? Defaults to `TRUE`. #' @param ... Additional parameteres. diff --git a/man/board_test.Rd b/man/board_test.Rd index 4a4d7892..912f89c4 100644 --- a/man/board_test.Rd +++ b/man/board_test.Rd @@ -7,12 +7,12 @@ board_test(board, exclude = list(), suite = c("default", "versions")) } \arguments{ +\item{board}{The name of the board to test.} + \item{exclude}{Names of tests to exclude form test.} \item{suite}{The test suite to run, currently only \code{"versions"} or \code{default} are supported.} - -\item{name}{The name of the board to test.} } \description{ Tests a particular board, useful only when creating new boards. diff --git a/man/custom-pins.Rd b/man/custom-pins.Rd index f8e7bbfc..b86a2ea4 100644 --- a/man/custom-pins.Rd +++ b/man/custom-pins.Rd @@ -35,13 +35,9 @@ board_pin_store( \item{retrieve}{Should the pin be retrieved after being created? Defaults to \code{TRUE}.} -\item{custom_metadata}{Deprecated. Please use \code{metadata} instead.} - -\item{description}{The text patteren to find a pin.} +\item{metadata}{Additional user supplied metadata.} -\item{type}{The type of pin being stored.} - -\item{metadat}{Additional user supplied metadata.} +\item{custom_metadata}{Deprecated. Please use \code{metadata} instead.} } \description{ Family of functions meant to be used to implement custom pin extensions, not to be used by users.