Skip to content

Commit 24be2ea

Browse files
committed
irrelevant typos, but must be corrected
1 parent 4bc1e7c commit 24be2ea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/spaces/gradedspace.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,16 +189,16 @@ end
189189

190190
function Base.show(io::IO, V::GradedSpace{I}) where {I<:Sector}
191191
print(io, type_repr(typeof(V)), "(")
192-
seperator = ""
192+
separator = ""
193193
comma = ", "
194194
io2 = IOContext(io, :typeinfo => I)
195195
for c in sectors(V)
196196
if isdual(V)
197-
print(io2, seperator, dual(c), "=>", dim(V, c))
197+
print(io2, separator, dual(c), "=>", dim(V, c))
198198
else
199-
print(io2, seperator, c, "=>", dim(V, c))
199+
print(io2, separator, c, "=>", dim(V, c))
200200
end
201-
seperator = comma
201+
separator = comma
202202
end
203203
print(io, ")")
204204
V.dual && print(io, "'")

0 commit comments

Comments
 (0)