From e68690dc7e626b7d3ac42638b8ed0005d08701f6 Mon Sep 17 00:00:00 2001 From: Sacha Verweij Date: Sun, 21 May 2017 11:17:09 -0700 Subject: [PATCH] Mention SharedArrays constructor deps in NEWS.md entry for #19989. (#21995) --- NEWS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index ab530702e8a9f..ab9523a00eb52 100644 --- a/NEWS.md +++ b/NEWS.md @@ -508,7 +508,7 @@ Deprecated or removed * The `Array` constructor syntax `Array(T, dims...)` has been deprecated in favor of the forms `Array{T,N}(dims...)` (where `N` is known, or particularly `Vector{T}(dims...)` for `N = 1` and `Matrix{T}(dims...)` for `N = 2`), - and `Array{T}(dims...)` (where `N` is not known) ([#19989]). + and `Array{T}(dims...)` (where `N` is not known). Likewise for `SharedArray`s ([#19989]). * `sumabs` and `sumabs2` have been deprecated in favor of `sum(abs, x)` and `sum(abs2, x)`, respectively. `maxabs` and `minabs` have similarly been deprecated in favor of `maximum(abs, x)` and `minimum(abs, x)`.