You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
diff --git a/stdlib/REPL/src/docview.jl b/stdlib/REPL/src/docview.jl
index a9ecd1e4bb..66f2aba863 100644
--- a/stdlib/REPL/src/docview.jl+++ b/stdlib/REPL/src/docview.jl@@ -283,7 +283,7 @@ function summarize(io::IO, TT::Type, binding::Binding)
println(io, "# Fields")
println(io, "```")
pad = maximum(length(string(f)) for f in fieldnames(T))
- for (f, t) in zip(fieldnames(T), T.types)+ for (f, t) in zip(fieldnames(T), fieldtypes(T))
println(io, rpad(f, pad), " :: ", t)
end
println(io, "```")
The stacktrace doesn't mention StaticArrays so I'm guessing it's a stdlib issue.
The text was updated successfully, but these errors were encountered: