Skip to content

Commit 07eb54f

Browse files
rfourquetararslan
authored andcommitted
use * instead of ⋅ to show factorizations (fix #62) (#63)
1 parent 5881c22 commit 07eb54f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/factorization.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ end
4040
Base.length(f::Factorization) = length(f.pe)
4141

4242
Base.show(io::IO, ::MIME{Symbol("text/plain")}, f::Factorization) =
43-
join(io, isempty(f) ? "1" : [(e == 1 ? "$p" : "$p^$e") for (p,e) in f.pe], " ")
43+
join(io, isempty(f) ? "1" : [(e == 1 ? "$p" : "$p^$e") for (p,e) in f.pe], " * ")

0 commit comments

Comments
 (0)