Skip to content

Commit

Permalink
tweak num digits
Browse files Browse the repository at this point in the history
  • Loading branch information
baggepinnen committed Mar 7, 2024
1 parent 2927113 commit ac422bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DiscretePIDs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ end
function Base.show(io::IO, ::MIME"text/plain", pid::DiscretePID)
println(io, "$(typeof(pid))( # with parameters and state:")
for name in fieldnames(DiscretePID)
@printf(io, " %-12.8g,# %s\n", getfield(pid, name), name)
@printf(io, " %-14.7g,# %s\n", getfield(pid, name), name)
end
println(io, ")")
end
Expand Down

0 comments on commit ac422bb

Please sign in to comment.