Skip to content

Commit 430dbc5

Browse files
committed
bufix println()
1 parent 681aee5 commit 430dbc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dynamicalsystem/dynamicalsystem.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ function Base.show(io::IO, ds::DS)
274274

275275
println(io, text)
276276
prefix = rpad(" state: ", ps)
277-
print(io, prefix); printlimited(io, u0, Δx = length(prefix)); println()
277+
print(io, prefix); printlimited(io, u0, Δx = length(prefix)); print(io, "\n")
278278
println(io, rpad(" e.o.m.: ", ps), eomstring(ds.f))
279279
println(io, rpad(" in-place? ", ps), isinplace(ds))
280280
println(io, rpad(" jacobian: ", ps), jacobianstring(ds)),

0 commit comments

Comments
 (0)