Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correct replacement for read(io, type dims)
It says > read(io, type, dims) is deprecated to read!(io, Array{type}(dims)) (JuliaLang#21450). but in turn `Array{type}(dims)` is deprecated to `Array{type}(uninitialized, dims)`. Fix to inform users about the correct replacement.
- Loading branch information