Skip to content

Commit

Permalink
Update src/abstractdataframe/show.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
nalimilan committed Oct 13, 2020
1 parent 25915a6 commit e2048f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/abstractdataframe/show.jl
Expand Up @@ -93,7 +93,7 @@ function compacttype(T::Type, maxwidth::Int=8, initial::Bool=true)

# This is only type display shortening so we
# are OK with any T whose name starts with CategoricalValue here
if startswith(sT, "CategoricalValue") || startswith(sT, "CategoricalArray.CategoricalValue")
if startswith(sT, "CategoricalValue") || startswith(sT, "CategoricalArrays.CategoricalValue")
sT = string(nameof(T))
if textwidth(sT) maxwidth
return sT * "" * suffix
Expand Down

0 comments on commit e2048f7

Please sign in to comment.