Skip to content

Commit

Permalink
Fix show method for MatSpace (#1934)
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin authored Dec 19, 2024
1 parent 747df7d commit 0bc7807
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Matrix.jl
Original file line number Diff line number Diff line change
Expand Up @@ -784,6 +784,7 @@ function show(io::IO, a::MatSpace)
io = pretty(io)
print(io, "Matrix space of ")
print(io, ItemQuantity(nrows(a), "row"), " and ", ItemQuantity(ncols(a), "column"))
print(io, " over ")
print(terse(io), Lowercase(), base_ring(a))
end
end
Expand Down

0 comments on commit 0bc7807

Please sign in to comment.