diff --git a/src/blameAnnotationFormatter.ts b/src/blameAnnotationFormatter.ts index 5a11e49..4a45eb8 100644 --- a/src/blameAnnotationFormatter.ts +++ b/src/blameAnnotationFormatter.ts @@ -49,7 +49,7 @@ export class BlameAnnotationFormatter { static getAnnotationHover(config: IBlameConfig, line: IGitCommitLine, commit: GitCommit): string | Array { const message = `> \`${commit.message.replace(/\n/g, '\`\n>\n> \`')}\``; if (commit.isUncommitted) { - return `\`${'0'.repeat(8)}\`   __Uncommitted changes__`; + return `\`${'0'.repeat(8)}\`   __Uncommitted change__`; } return `\`${commit.shortSha}\`   __${commit.author}__, ${moment(commit.date).fromNow()} _(${moment(commit.date).format(config.annotation.dateFormat || 'MMMM Do, YYYY h:MMa')})_ \n\n${message}`;