From 16963ee0548965108ef8b1419b45bc2c256e68f3 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Mon, 26 Jun 2017 23:48:44 -0400 Subject: [PATCH] Fixes typo --- src/gitCodeLensProvider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gitCodeLensProvider.ts b/src/gitCodeLensProvider.ts index 8516b7d..e6d59a9 100644 --- a/src/gitCodeLensProvider.ts +++ b/src/gitCodeLensProvider.ts @@ -184,7 +184,7 @@ export class GitCodeLensProvider implements CodeLensProvider { // Make sure there is only 1 lens per line if (lenses.length && lenses[lenses.length - 1].range.start.line === line.lineNumber) return; - // Anchor the code lens to the end of the line -- so they are somewhat consistenly placed + // Anchor the code lens to the end of the line -- so they are somewhat consistently placed let startChar = line.range.end.character - 1; let blameForRangeFn: (() => GitBlameLines | undefined) | undefined = undefined;