Skip to content

Commit 1b3c585

Browse files
committed
NEWS and minor doc update for global scope fixes
[ci skip]
1 parent da88bf0 commit 1b3c585

File tree

2 files changed

+10
-18
lines changed

2 files changed

+10
-18
lines changed

NEWS.md

+8-5
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@ New language features
3535
Language changes
3636
----------------
3737

38-
* Unsigned `BigInt` literal syntax has been removed ([#11105]).
39-
Unsigned literals larger than `UInt128` now throw a syntax error.
40-
4138
* Tuple types are now written as `Tuple{A, B}` instead of as `(A, B)`.
4239
Tuples of bits types are inlined into structs and arrays, like other
4340
immutable types.
@@ -78,18 +75,21 @@ Language changes
7875
* `[x,y]` constructs a vector of `x` and `y` instead of concatenating them
7976
([#3737], [#2488], [#8599]).
8077

78+
* Unsigned `BigInt` literal syntax has been removed ([#11105]).
79+
Unsigned literals larger than `UInt128` now throw a syntax error.
80+
8181
* `error(::Exception)` and `error(::Type{Exception})` have been deprecated
8282
in favor of using an explicit `throw` ([#9690]).
8383

8484
* `Uint` etcetera are renamed to `UInt` ([#8905]).
8585

8686
* `String` is renamed to `AbstractString` ([#8872]).
8787

88-
* `None` is deprecated; use `Union()` instead ([#8423]).
88+
* `None` is deprecated; use `Union{}` instead ([#8423]).
8989

9090
* `Nothing` (the type of `nothing`) is renamed to `Void` ([#8423]).
9191

92-
* Arrays can be constructed with the syntax `Array{T}(m,n)` ([#3214], [#10075])
92+
* Arrays can be constructed with the syntax `Array{T}(m,n)` ([#3214], [#10075]).
9393

9494
* `Dict` literal syntax `[a=>b,c=>d]` is replaced by `Dict(a=>b,c=>d)`,
9595
`{a=>b}` is replaced by `Dict{Any,Any}(a=>b)`, and
@@ -122,6 +122,9 @@ Language changes
122122
* Unions of types should now be written with curly braces instead of parentheses, i.e.
123123
`Union{Type1, Type2}` instead of `Union(Type1, Type2)` ([#11432]).
124124

125+
* The keyword `local` is no longer allowed in global scope. Use `let` instead of
126+
`begin` to create a new scope from the top level ([#7234], [#10472]).
127+
125128
Command line option changes
126129
---------------------------
127130

doc/manual/variables-and-scoping.rst

+2-13
Original file line numberDiff line numberDiff line change
@@ -284,16 +284,7 @@ block without creating any new bindings:
284284

285285
.. doctest::
286286

287-
julia> begin
288-
local x = 1
289-
begin
290-
local x = 2
291-
end
292-
x
293-
end
294-
ERROR: syntax: local "x" declared twice
295-
296-
julia> begin
287+
julia> let
297288
local x = 1
298289
let
299290
local x = 2
@@ -302,9 +293,7 @@ block without creating any new bindings:
302293
end
303294
1
304295

305-
The first example is invalid because you cannot declare the same
306-
variable as local in the same scope twice. The second example is valid
307-
since the ``let`` introduces a new scope block, so the inner local ``x``
296+
Since ``let`` introduces a new scope block, the inner local ``x``
308297
is a different variable than the outer local ``x``.
309298

310299
For Loops and Comprehensions

0 commit comments

Comments
 (0)