Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentarelbundock committed Jul 4, 2024
1 parent f8d1265 commit a376f51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/render_docs.R
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ render_docs <- function(path = ".", verbose = FALSE, parallel = FALSE, freeze =
# Quarto sometimes raises errors encouraging users to set `quiet=FALSE` to get more information.
# This is a convenience check to match Quarto's `quiet` and `altdoc`'s `verbose` arguments.
dots <- list(...)
if (quiet %in% names(dots) && is.logical(dots[["quiet"]]) && length(dots[["quiet"]]) == 1) {
if ("quiet" %in% names(dots) && is.logical(dots[["quiet"]]) && length(dots[["quiet"]]) == 1) {
verbose <- !dots[["quiet"]]
}

Expand Down

0 comments on commit a376f51

Please sign in to comment.