Skip to content

Commit

Permalink
Fix deprecations (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
femtocleaner[bot] authored and jacobadenbaum committed Sep 5, 2018
1 parent 3254fc0 commit d9a2e2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/advanced_usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ printing.
Let's make up some data (values, keys, and standard errors) so that we
can see all of the different ways to construct columns:
```julia
julia> srand(1234);
julia> Random.seed!(1234);

julia> vals = randn(10)
10-element Array{Float64,1}:
Expand Down
2 changes: 1 addition & 1 deletion src/Printing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ function print(io::IO, t::IndexedTable{N,M}; kwargs...) where {N,M}
end

function print(t::IndexedTable; kwargs...)
print(STDOUT, t; kwargs...)
print(stdout, t; kwargs...)
end

show(io::IO, t::IndexedTable; kwargs...) = print(io, t; kwargs...)
Expand Down

0 comments on commit d9a2e2b

Please sign in to comment.