From 7b657dd1032f99ada060eb6e3a17ef40428cb975 Mon Sep 17 00:00:00 2001 From: vincent guyader Date: Fri, 6 Jun 2025 14:55:11 +0200 Subject: [PATCH] Fix default comment --- R/shiny2docker.R | 2 +- man/shiny2docker.Rd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/R/shiny2docker.R b/R/shiny2docker.R index f659f6f..d3369b0 100644 --- a/R/shiny2docker.R +++ b/R/shiny2docker.R @@ -8,7 +8,7 @@ #' @param lockfile Character. Path to the `renv.lock` file that specifies the R package dependencies. If the `renv.lock` file does not exist, it will be created for production using the `attachment::create_renv_for_prod` function. #' @param output Character. Path to the generated Dockerfile. Defaults to `"Dockerfile"`. #' @param FROM Docker image to start FROM Default is FROM rocker/r-base -#' @param AS The AS of the Dockerfile. Default it `NULL`. +#' @param AS The AS of the Dockerfile. Default is `NULL`. #' @param sysreqs boolean. If `TRUE`, the Dockerfile will contain sysreq installation. #' @param expand boolean. If `TRUE` each system requirement will have its own `RUN` line. #' @param repos character. The URL(s) of the repositories to use for `options("repos")`. diff --git a/man/shiny2docker.Rd b/man/shiny2docker.Rd index 775f9d8..49fb0bc 100644 --- a/man/shiny2docker.Rd +++ b/man/shiny2docker.Rd @@ -30,7 +30,7 @@ shiny2docker( \item{FROM}{Docker image to start FROM Default is FROM rocker/r-base} -\item{AS}{The AS of the Dockerfile. Default it \code{NULL}.} +\item{AS}{The AS of the Dockerfile. Default is \code{NULL}.} \item{sysreqs}{boolean. If \code{TRUE}, the Dockerfile will contain sysreq installation.}