From af9fbf9b15e3ac8006b6f924448feccb4c01500b Mon Sep 17 00:00:00 2001 From: Richard Iannone Date: Thu, 3 Oct 2024 21:15:32 -0400 Subject: [PATCH] Update utils_plots.R --- R/utils_plots.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/utils_plots.R b/R/utils_plots.R index 34b2c71298..5186e41676 100644 --- a/R/utils_plots.R +++ b/R/utils_plots.R @@ -2059,7 +2059,7 @@ get_extreme_value <- function(..., stat = c("max", "min")) { value_list <- list(...) - stat <- rlang::arg_match(stat) + stat <- rlang::arg_match0(stat, values = c("max", "min")) value_list_vec <- unlist(value_list)