We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df508b7 commit 1fdb2f5Copy full SHA for 1fdb2f5
src/parse-git-diff.ts
@@ -46,7 +46,7 @@ function parseFileChange(ctx: Context): AnyFileChange | undefined {
46
if (!isComparisonInputLine(ctx.getCurLine())) {
47
return;
48
}
49
- const comparisonLineParsed = pasreComparisonInputLine(ctx);
+ const comparisonLineParsed = parseComparisonInputLine(ctx);
50
51
let isDeleted = false;
52
let isNew = false;
@@ -137,7 +137,7 @@ function isComparisonInputLine(line: string): boolean {
137
return line.indexOf('diff') === 0;
138
139
140
-function pasreComparisonInputLine(
+function parseComparisonInputLine(
141
ctx: Context
142
): { from: string; to: string } | null {
143
const line = ctx.getCurLine();
0 commit comments