From c2b6a46e6a5b0a923dbc38a88e2e3cbf239083e5 Mon Sep 17 00:00:00 2001 From: ScottPJones Date: Fri, 19 Jun 2015 07:37:32 -0400 Subject: [PATCH] Add news about #11432, curly braces for type Unions --- NEWS.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 0e615c6b47e7a..c5462cddb17e0 100644 --- a/NEWS.md +++ b/NEWS.md @@ -119,6 +119,9 @@ Language changes that implement `getindex` or `setindex!` methods must also extend those methods to support arguments of type `Colon` ([#10331]). + * Unions of types should now be written with curly braces instead of parenthesis, i.e. + `Union{Type1, Type2}` instead of `Union(Type1, Type2)` ([#11432]). + Command line option changes --------------------------- @@ -1451,10 +1454,11 @@ Too numerous to mention. [#10914]: https://github.com/JuliaLang/julia/issues/10914 [#10955]: https://github.com/JuliaLang/julia/issues/10955 [#10994]: https://github.com/JuliaLang/julia/issues/10994 +[#11067]: https://github.com/JuliaLang/julia/issues/11067 [#11105]: https://github.com/JuliaLang/julia/issues/11105 [#11145]: https://github.com/JuliaLang/julia/issues/11145 [#11171]: https://github.com/JuliaLang/julia/issues/11171 [#11241]: https://github.com/JuliaLang/julia/issues/11241 [#11347]: https://github.com/JuliaLang/julia/issues/11347 [#11379]: https://github.com/JuliaLang/julia/issues/11379 -[#11067]: https://github.com/JuliaLang/julia/issues/11067 +[#11432]: https://github.com/JuliaLang/julia/issues/11432