Skip to content

Commit

Permalink
Merge pull request getify#228 from starandtina/patch-1
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
getify committed Nov 10, 2014
2 parents 8722f71 + b408393 commit 124c89a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scope & closures/ch2.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ But if the *Engine* finds an `eval(..)` or `with` in the code, it essentially ha

In other words, in the pessimistic sense, most of those optimizations it *would* make are pointless if `eval(..)` or `with` are present, so it simply doesn't perform the optimizations *at all*.

Your code will almost certainly tend to run slower simply by the fact that you include an `eval(..)` or `with` anywhere in the code. No matter how smart the *Engine* may be about trying to limit the side-effects of these pessmistic assumptions, **there's no getting around the fact that without the optimizations, code runs slower.**
Your code will almost certainly tend to run slower simply by the fact that you include an `eval(..)` or `with` anywhere in the code. No matter how smart the *Engine* may be about trying to limit the side-effects of these pessimistic assumptions, **there's no getting around the fact that without the optimizations, code runs slower.**

## Review (TL;DR)

Expand Down

0 comments on commit 124c89a

Please sign in to comment.