Skip to content

Commit

Permalink
fix pringting
Browse files Browse the repository at this point in the history
  • Loading branch information
Roger-luo committed Nov 2, 2018
1 parent e25e02a commit d5e7ec9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/BoundedLattice.jl
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ nameof(::BoundedLattice) = "Bounded Lattice"

function show(io::IO, lattice::BoundedLattice)
align = get(io, :align, 0)
println(io, " " * align, nameof(lattice))
println(io, " " * align, "boundary: ", boundary(lattice))
println(io, " " * align, "size: ", size(lattice))
println(io, " " ^ align, nameof(lattice))
println(io, " " ^ align, "boundary: ", boundary(lattice))
println(io, " " ^ align, "size: ", size(lattice))
end

0 comments on commit d5e7ec9

Please sign in to comment.