Skip to content

Commit

Permalink
modified error in parser
Browse files Browse the repository at this point in the history
Does 'No blank line after signature' mean there should not be a blank line after the signature or there is a missing blank line after the signature? I think it's better to just use "Missing".
  • Loading branch information
goatandsheep authored Oct 2, 2018
1 parent ef1ab64 commit 2c165bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function parse (input) {
}

if (headerParts.length > 1 && headerParts[1] !== '') {
throw new ParserError('No blank line after signature');
throw new ParserError('Missing blank line after signature');
}

const cues = parseCues(parts);
Expand Down

0 comments on commit 2c165bc

Please sign in to comment.