From dabde3f359a3b88dfa7f450541f4af40ea28a8a5 Mon Sep 17 00:00:00 2001 From: Indrajeet Patil Date: Thu, 5 Oct 2023 21:12:29 +0200 Subject: [PATCH] avoid loaded term [skip ci] --- R/interpret.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/interpret.R b/R/interpret.R index 6d85e6e4..9afb4cbe 100644 --- a/R/interpret.R +++ b/R/interpret.R @@ -36,7 +36,7 @@ rules <- function(values, labels = NULL, name = NULL, right = TRUE) { } } - # Sanity checks + # validation checks if (length(labels) < length(values)) { insight::format_error("There cannot be less labels than reference values!") } else if (length(labels) > length(values) + 1) {