Skip to content

Commit 725642e

Browse files
authored
Merge pull request #137 from JuliaAlgebra/bl/superfluous
Remove superfluous &&
2 parents 543802a + 29546c8 commit 725642e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/show.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ function _show(io::IO, mime, m::AbstractMonomial)
5555
n = length(vars)
5656
for (i, var, exp) in zip(1:n, vars, exponents(m))
5757
if !iszero(exp)
58-
if mime isa MIME"text/print" && printed_var && i > 0 &&
59-
print(io,"*")
58+
if mime isa MIME"text/print" && printed_var && i > 0
59+
print(io, "*")
6060
end
6161
_show(io, mime, var)
6262
printed_var = true

0 commit comments

Comments
 (0)