Skip to content

Commit

Permalink
Small change
Browse files Browse the repository at this point in the history
  • Loading branch information
rikhuijzer committed Jul 4, 2022
1 parent f094263 commit acc8ac8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Tables.jl
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ function Base.show(io::IO, x::T) where {T <: AbstractRow}
end

function Base.show(io::IO, table::AbstractColumns; max_cols = 20)
ncol = length(columnnames(table))
print(io, "$(typeof(table)) with $(rowcount(table)) rows, $(ncol) columns, and ")
ncols = length(columnnames(table))
print(io, "$(typeof(table)) with $(rowcount(table)) rows, $(ncols) columns, and ")
sch = schema(table)
if sch !== nothing
print(io, "schema:\n")
Expand Down

0 comments on commit acc8ac8

Please sign in to comment.