Skip to content

Commit 69d4c5f

Browse files
Fix all.equal method registration (#67)
* Fix all.equal method registration * roxygen2 fix
1 parent 7ed6c27 commit 69d4c5f

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

NAMESPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ S3method("errors<-",numeric)
1212
S3method(Math,errors)
1313
S3method(Ops,errors)
1414
S3method(Summary,errors)
15-
S3method(all,equal.errors)
15+
S3method(all.equal,errors)
1616
S3method(anyDuplicated,errors)
1717
S3method(as.data.frame,errors)
1818
S3method(as.errors,default)

R/misc.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@ cbind.errors <- function(..., deparse.level = 1) {
212212
#' @export
213213
rbind.errors <- cbind.errors
214214

215+
#' @method all.equal errors
215216
#' @export
216217
all.equal.errors <- function(target, current, ...) {
217218
msg <- if (identical(attr(target, "id"), attr(current, "id")))

0 commit comments

Comments
 (0)