Skip to content

Commit 9df9635

Browse files
Merge pull request #473 from artkuo/updateshow
Change header for show method from time to t.
2 parents c2d6a5c + 60cac7f commit 9df9635

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/show.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
function Base.show(io::IO, mime::MIME"text/plain", interp::AbstractInterpolation)
44
print(io, get_show(interp))
5-
header = ["time", get_names(interp.u)...]
5+
header = ["t", get_names(interp.u)...]
66
data = hcat(interp.t, get_data(interp.u))
77
pretty_table(io, data; column_labels = header, vertical_crop_mode = :middle)
88
end

0 commit comments

Comments
 (0)