diff --git a/src/abstractdataframe/show.jl b/src/abstractdataframe/show.jl index a874b6fe57..ccca7f9bdc 100644 --- a/src/abstractdataframe/show.jl +++ b/src/abstractdataframe/show.jl @@ -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