Skip to content

Commit 29546c8

Browse files
committed
Remove superfluous &&
1 parent 905ee7c commit 29546c8

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)