mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
Fix from code inspect: Use "not" instead of "!".
This commit is contained in:
parent
ea86e3e7b1
commit
d626e70287
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ fragmentsToText = (fragments) ->
|
|||
# Validates that `fragments` is an array of CodeFragment objects.
|
||||
# If PARANOID is false, then this does nothing.
|
||||
checkFragments = (fragments, node=null) ->
|
||||
if !PARANOID then return fragments
|
||||
if not PARANOID then return fragments
|
||||
|
||||
nodeName = if node then " from #{node.constructor.name}" else ""
|
||||
if !fragments
|
||||
|
|
Loading…
Reference in a new issue