Skip to content

Commit ad3eac5

Browse files
committed
Formatting
1 parent 749aa43 commit ad3eac5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/Exact.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,12 @@ struct Exact
1313
end
1414
end
1515

16-
1716
function show(io::IO, x::Exact)
1817
a = numerator(x.val)
1918
b = denominator(x.val)
20-
if b==1
19+
if b == 1
2120
print(io, a)
2221
else
2322
print(io, "$a/$b")
2423
end
25-
end
24+
end

0 commit comments

Comments
 (0)