1
0
mirror of https://github.com/kalmarek/Groups.jl.git synced 2024-12-04 18:11:26 +01:00

fix indentation

This commit is contained in:
kalmarek 2018-07-30 14:05:47 +02:00
parent 0ab4df2ce5
commit 1783ba5065

View File

@ -197,11 +197,11 @@ end
###############################################################################
function show(io::IO, G::DirectProductGroup)
println(io, "$(G.n)-fold direct product of $(G.group)")
print(io, "$(G.n)-fold direct product of $(G.group)")
end
function show(io::IO, g::DirectProductGroupElem)
print(io, "($(join(g.elts,",")))")
print(io, "[$(join(g.elts,","))]")
end
###############################################################################