Skip to content

Commit

Permalink
add ? suffix to show on all return paths
Browse files Browse the repository at this point in the history
  • Loading branch information
adienes authored and bkamins committed Sep 14, 2024
1 parent 6fb2a3f commit 7819715
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/abstractdataframe/show.jl
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ function compacttype(T::Type, maxwidth::Int)

# handle the case when the type printed is not parametric but string(T)
# prefixed it with the module name which caused it to be overlong
textwidth(sT) maxwidth + 1 && endswith(sTfull, sT) && return sT
textwidth(sT) maxwidth + 1 && endswith(sTfull, sT) && return sT * suffix

cumwidth = 0
stop = 0
Expand Down

0 comments on commit 7819715

Please sign in to comment.