Skip to content

Commit

Permalink
Correct replacement for read(io, type dims) (JuliaLang#25878)
Browse files Browse the repository at this point in the history
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
traktofon authored and JeffBezanson committed Feb 4, 2018
1 parent 888ec3d commit a1bec2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ Deprecated or removed
in favor of `replace(s::AbstractString, pat => r; [count])` ([#25165]).
Moreover, `count` cannot be negative anymore (use `typemax(Int)` instead ([#22325]).

* `read(io, type, dims)` is deprecated to `read!(io, Array{type}(dims))` ([#21450]).
* `read(io, type, dims)` is deprecated to `read!(io, Array{type}(uninitialized, dims))` ([#21450]).

* `read(::IO, ::Ref)` is now a method of `read!`, since it mutates its `Ref` argument ([#21592]).

Expand Down

0 comments on commit a1bec2a

Please sign in to comment.