You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(header): Read description delimiter exactly as ": "
This fixes an issue where a commit header like
this: `type(scope): 💡 look a light bulb!` will case
an error. `lexer.Take()` is greedy and will read `: :`
into the `Current()` token and thus will fail the comparison
to the expected delimiter (`: `).
0 commit comments