Skip to content
This repository has been archived by the owner on Jun 16, 2021. It is now read-only.

Commit

Permalink
feat: autofix header case
Browse files Browse the repository at this point in the history
  • Loading branch information
brokenmass committed Oct 24, 2016
1 parent 89b4dac commit 238dd6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ module.exports = {
width: MAX_LINE_WIDTH
};

const head = (answers.type + ': ' + answers.subject.trim());
const head = (answers.type + ': ' + answers.subject.trim()).toLowerCase();

// Wrap these lines at MAX_LINE_WIDTH characters
const body = wrap(answers.body, wrapOptions);
Expand Down

0 comments on commit 238dd6f

Please sign in to comment.