Skip to content

Commit

Permalink
Merge pull request #20 from bkeepers/fix-lint-errors
Browse files Browse the repository at this point in the history
Fix lint errors
  • Loading branch information
jbjonesjr authored Sep 10, 2017
2 parents 8634d82 + 47e05bc commit 77d5cea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/freeze.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ module.exports = class Freeze {
commandEntity.addMatch('freeze', 'freeze');

nlp.addEntity(commandEntity);
// Regex Entity parsing does not currently work. It causes a recursive f(x) that crashes node. That's why

// Regex Entity parsing does not currently work. It causes a recursive f(x) that crashes node. That's why
const responseEntity = new Bravey.RegexEntityRecognizer('reopen_text');
responseEntity.addMatch(new RegExp('====== (.*) ======='), (match) => {
responseEntity.addMatch(new RegExp('====== (.*) ======='), match => {
return match;
});

Expand Down

0 comments on commit 77d5cea

Please sign in to comment.