From 8c2e2014d9ef4545c7e2752a36051d65b6f9615e Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Wed, 17 Jul 2024 11:14:57 -0500 Subject: [PATCH] abort -> cli_abort --- R/list-transpose.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/list-transpose.R b/R/list-transpose.R index e6b65936..136d60c3 100644 --- a/R/list-transpose.R +++ b/R/list-transpose.R @@ -148,6 +148,6 @@ match_template <- function(x, template, error_arg = caller_arg(x), error_call = rep_along(template, list(x)) } } else { - abort("Invalid `template`", .internal = TRUE) + cli::cli_abort("Invalid `template`", .internal = TRUE) } }