Skip to content

Commit

Permalink
Update Matrix.jl (#270)
Browse files Browse the repository at this point in the history
tiny typo in show
  • Loading branch information
alexjbest authored and thofma committed Feb 13, 2019
1 parent 05e80f5 commit 26c0d69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/generic/Matrix.jl
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ issquare(a::MatElem) = (nrows(a) == ncols(a))

function show(io::IO, a::AbstractAlgebra.MatSpace)
print(io, "Matrix Space of ")
print(io, a.nrows, " nrows and ", a.ncols, " columns over ")
print(io, a.nrows, " rows and ", a.ncols, " columns over ")
print(io, base_ring(a))
end

Expand Down

0 comments on commit 26c0d69

Please sign in to comment.