Skip to content

Commit ba14d98

Browse files
davidwengierphil-allen-msft
authored andcommitted
Apply suggestions from code review
1 parent 7049857 commit ba14d98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/razor/src/razorLanguageServerOptionsResolver.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function findLanguageServerExecutable(withinDir: string) {
5959
pathWithExtension = `${fileName}.dll`;
6060
}
6161

62-
let fullPath = path.join(withinDir, pathWithExtension);
62+
const fullPath = path.join(withinDir, pathWithExtension);
6363

6464
if (!fs.existsSync(fullPath)) {
6565
throw new Error(
@@ -76,4 +76,4 @@ function isWindows() {
7676

7777
function isMacOS() {
7878
return os.platform() === 'darwin';
79-
}
79+
}

0 commit comments

Comments
 (0)