Skip to content

Commit

Permalink
fix: typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
sebffischer committed Oct 12, 2023
1 parent 9ba6f82 commit b09ad62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/DataBackendCbind.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ DataBackendCbind = R6Class("DataBackendCbind", inherit = DataBackend, cloneable
}

if (pk != b2$primary_key) {
stopf("All backends to rbind must have the primary_key '%s'", pk)
stopf("All backends to cbind must have the primary_key '%s'", pk)
}

super$initialize(list(b1 = b1, b2 = b2), pk, "data.table")
Expand Down

0 comments on commit b09ad62

Please sign in to comment.