Skip to content

Commit

Permalink
Fix: type - summarize
Browse files Browse the repository at this point in the history
  • Loading branch information
harpreetkhalsagtbit committed May 3, 2014
1 parent 84a7c89 commit 2a417a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scope & closures/ch1.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ A reasonable assumption would be that *Compiler* will produce code that could be

If *Engine* eventually finds a variable, it assigns the value `2` to it. If not, *Engine* will raise its hand and yell out an error!

To summaraize: two distinct actions are taken for a variable assignment: First, *Compiler* declares a variable (if not previously declared in the current scope), and second, when executing, *Engine* looks up the variable in *Scope* and assigns to it, if found.
To summarize: two distinct actions are taken for a variable assignment: First, *Compiler* declares a variable (if not previously declared in the current scope), and second, when executing, *Engine* looks up the variable in *Scope* and assigns to it, if found.

### Compiler Speak

Expand Down

0 comments on commit 2a417a0

Please sign in to comment.