From 5f2477087ad04bf290805d23bbb448fd84da869b Mon Sep 17 00:00:00 2001 From: Michael Chirico Date: Mon, 9 Mar 2026 11:37:05 -0700 Subject: [PATCH 1/2] Fix all.equal method registration --- NAMESPACE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NAMESPACE b/NAMESPACE index 99891eb..4737c20 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -12,7 +12,7 @@ S3method("errors<-",numeric) S3method(Math,errors) S3method(Ops,errors) S3method(Summary,errors) -S3method(all,equal.errors) +S3method(all.equal,errors) S3method(anyDuplicated,errors) S3method(as.data.frame,errors) S3method(as.errors,default) From 1ec6ee82577b5c83d2ecd4327f2cf463dc16133f Mon Sep 17 00:00:00 2001 From: Michael Chirico Date: Mon, 9 Mar 2026 11:38:20 -0700 Subject: [PATCH 2/2] roxygen2 fix --- R/misc.R | 1 + 1 file changed, 1 insertion(+) diff --git a/R/misc.R b/R/misc.R index d067491..429676b 100644 --- a/R/misc.R +++ b/R/misc.R @@ -212,6 +212,7 @@ cbind.errors <- function(..., deparse.level = 1) { #' @export rbind.errors <- cbind.errors +#' @method all.equal errors #' @export all.equal.errors <- function(target, current, ...) { msg <- if (identical(attr(target, "id"), attr(current, "id")))