Skip to content

Commit b19b069

Browse files
committed
Minor cleanup
1 parent 1828c9c commit b19b069

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/analysis/lattice.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,7 @@ function Base.show(io::IO, inc::Incidence)
234234
!first && print(io, " + ")
235235
first = false
236236
if is_grouped(inc.row[1], 1) && v.time_dependent
237-
= subscript(i - 1)
238-
print(io, "$(propto(inc.row[1]::Linearity))t", " * ")
237+
print(io, propto(inc.row[1]::Linearity), 't', " * ")
239238
else # unknown constant coefficient
240239
print(io, propto(v))
241240
end
@@ -265,6 +264,7 @@ end
265264

266265
"""
267266
incidence"a + f(∝ₛt, u₁)"
267+
incidence"Incidence(a + f(∝ₛt, u₁))" # you may copy-paste straight from its printed output
268268
269269
Construct an [`Incidence`](@ref) from its printed representation.
270270
"""

0 commit comments

Comments
 (0)