Skip to content

Commit

Permalink
Whoops... my local prettier was out of date
Browse files Browse the repository at this point in the history
  • Loading branch information
domharrington committed Jun 26, 2019
1 parent c208328 commit c03d284
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions lib/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,11 @@ exports.run = function() {
const category = categories[key];
console.log('');
console.log(category.desc);
category.commands.sort((a, b) => a.weight > b.weight).forEach(command => {
console.log(command.text);
});
category.commands
.sort((a, b) => a.weight > b.weight)
.forEach(command => {
console.log(command.text);
});
});

console.log('');
Expand Down

0 comments on commit c03d284

Please sign in to comment.