From 537998dc317ac02cfdf9cda714306bbef7a60fdb Mon Sep 17 00:00:00 2001 From: Matt Bauman Date: Fri, 24 Jan 2020 09:29:30 -0600 Subject: [PATCH] =?UTF-8?q?Doc:=20broadcast=20fusion=20is=20not=20a=20scop?= =?UTF-8?q?e=20construct=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …but generators are. --- doc/src/manual/variables-and-scoping.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/manual/variables-and-scoping.md b/doc/src/manual/variables-and-scoping.md index c8b62f19a59cd..2231844601935 100644 --- a/doc/src/manual/variables-and-scoping.md +++ b/doc/src/manual/variables-and-scoping.md @@ -22,7 +22,7 @@ interactive prompt (REPL) | global | global (mutable) [`struct`](@ref), [`macro`](@ref) | local | global [`for`](@ref), [`while`](@ref), [`try-catch-finally`](@ref try), [`let`](@ref) |local | global or local functions (either syntax, anonymous & do-blocks) | local | global or local -comprehensions, broadcast-fusing | local | global or local +comprehensions and generators | local | global or local Notably missing from this table are [begin blocks](@ref man-compound-expressions) and [if blocks](@ref man-conditional-evaluation)