Skip to content

Commit

Permalink
Fix typo; closes #4187 (#4539)
Browse files Browse the repository at this point in the history
  • Loading branch information
GeoffreyBooth authored May 6, 2017
1 parent 22d0cc1 commit e381e48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/coffeescript/rewriter.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/rewriter.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ exports.Rewriter = class Rewriter
inImplicitObject = -> inImplicit() and stackTop()?[0] is '{'
# Unclosed control statement inside implicit parens (like
# class declaration or if-conditionals)
inImplicitControl = -> inImplicit and stackTop()?[0] is 'CONTROL'
inImplicitControl = -> inImplicit() and stackTop()?[0] is 'CONTROL'

startImplicitCall = (j) ->
idx = j ? i
Expand Down

0 comments on commit e381e48

Please sign in to comment.