Skip to content
This repository was archived by the owner on May 4, 2023. It is now read-only.

Commit 2a3f17a

Browse files
committed
#60: update let to const
1 parent dc430b6 commit 2a3f17a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/diagnostics/diagnostics.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const registerFixForDocument = (
7575
// Query the ranges saved for this document, and if the currently inspected range is not saved,
7676
// associate an empty list of fixes to it. Otherwise, add the fix for this range.
7777
const rangeAndFixesForDocument = FIXES_BY_DOCUMENT.get(documentUri);
78-
let rangeString = JSON.stringify(range);
78+
const rangeString = JSON.stringify(range);
7979
if (!rangeAndFixesForDocument?.has(rangeString)) {
8080
rangeAndFixesForDocument?.set(rangeString, [range, []]);
8181
}

0 commit comments

Comments
 (0)