Skip to content

Commit

Permalink
fix message
Browse files Browse the repository at this point in the history
  • Loading branch information
Yunuuuu committed Jan 29, 2024
1 parent 06476a2 commit becbc3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/Class-Multiply.R
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,12 @@ methods::setMethod(
if (x@transpose != y@transpose) {
if (x@transpose) {
cli::cli_warn(
"{.arg x} is transposed but {.arg y} not, transposing the storage order for {.arg x}" # nolint
"{.arg x} is transposed but {.arg y} not, transposing the storage axis for {.arg x}" # nolint
)
x <- BPCells::transpose_storage_order(x)
} else {
cli::cli_warn(
"{.arg y} is transposed but {.arg x} not, transposing the storage order for {.arg y}" # nolint
"{.arg y} is transposed but {.arg x} not, transposing the storage axis for {.arg y}" # nolint
)
y <- BPCells::transpose_storage_order(y)
}
Expand Down

0 comments on commit becbc3c

Please sign in to comment.