Skip to content

Commit

Permalink
whitespace fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JPMoresmau committed Jul 9, 2016
1 parent 00a08e7 commit 7aa14d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ace/mode/folding/haskell_cabal.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ oop.inherits(FoldMode, BaseFoldMode);
this.isHeading = function (session,row) {
var heading = "markup.heading";
var token = session.getTokens(row)[0];
return row==0 || (token && token.type.lastIndexOf(heading, 0) === 0);
return row==0 || (token && token.type.lastIndexOf(heading, 0) === 0);
};

this.getFoldWidget = function(session, foldStyle, row) {
Expand Down

0 comments on commit 7aa14d3

Please sign in to comment.