Skip to content

Commit

Permalink
Fixed whitespace and two typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mauro3 committed Feb 1, 2016
1 parent 336f3e8 commit 3051685
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/manual/variables-and-scoping.rst
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ changed within their global scope and not from an outside module. ::
# through a qualified access
import A # makes module A available
d = A.a
# A.a = 2 # would error with: "ERROR: type Module has no field a"
# A.a = 2 # would error with: "ERROR: cannot assign variables in other modules"
end

Note that the interactive prompt (aka REPL) is in the global scope of
Expand Down Expand Up @@ -373,7 +373,7 @@ following example::
2

See also the closures in the examples in the next two sections.

.. _man-let-blocks:

Let Blocks
Expand Down Expand Up @@ -485,7 +485,7 @@ iteration variables::

x = 0
[ x for x=1:3 ]
X # here still equal to 0
x # here still equal to 0

Constants
---------
Expand Down

0 comments on commit 3051685

Please sign in to comment.