Skip to content

Commit

Permalink
= ( )
Browse files Browse the repository at this point in the history
  • Loading branch information
douglascrockford committed Sep 9, 2017
1 parent 24f96e6 commit 77fe466
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions jslint.js
Expand Up @@ -3279,9 +3279,10 @@ var jslint = (function JSLint() {
return next();
}
}());
the_statement.open =
the_statement.names.length > 1
&& the_statement.line !== the_statement.names[1].line;
the_statement.open = (
the_statement.names.length > 1
&& the_statement.line !== the_statement.names[1].line
);
semicolon();
return the_statement;
}
Expand Down

0 comments on commit 77fe466

Please sign in to comment.