From b642f2c0736ddaf4faaad6989a61cc7b27d0cb42 Mon Sep 17 00:00:00 2001 From: Jay Hesselberth Date: Thu, 11 Apr 2024 16:20:02 -0600 Subject: [PATCH] Improve message if url is absent. part of #2380 --- R/sitrep.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/sitrep.R b/R/sitrep.R index 7d2bfa217..a9fb6fed5 100644 --- a/R/sitrep.R +++ b/R/sitrep.R @@ -18,7 +18,7 @@ pkgdown_sitrep <- function(pkg = ".") { if (is.null(pkg$meta[["url"]])) { msg_fld <- pkgdown_field(pkg, "url", cfg = TRUE, fmt = TRUE) - warns <- c(warns, x = paste0(msg_fld, " is misconfigured. See {.vignette pkgdown::metatdata}.")) + warns <- c(warns, x = paste0(msg_fld, " is absent. See {.vignette pkgdown::metatdata}.")) } desc_urls <- pkg$desc$get_urls()