Skip to content

Commit 5c63c42

Browse files
committed
let => const
1 parent 410203e commit 5c63c42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/changeForwarding.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function forwardFileChanges(server: OmniSharpServer): IDisposable {
8585
}
8686

8787
function isCSharpCodeFile(uri: Uri) : Boolean {
88-
let normalized = uri.path.toLocaleLowerCase();
88+
const normalized = uri.path.toLocaleLowerCase();
8989
return normalized.endsWith(".cs") || normalized.endsWith(".csx") || normalized.endsWith(".cake");
9090
}
9191

0 commit comments

Comments
 (0)