Skip to content

Commit

Permalink
chore(vscode): typo
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Jun 4, 2024
1 parent f5a753e commit f3f528a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extensions/vscode/src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ function getCurrentHybridModeStatus(report = false) {
}
return false;
}
const vscodeTsdkVersion = getVScodeTsdkVersion();
const vscodeTsdkVersion = getVSCodeTsdkVersion();
const workspaceTsdkVersion = getWorkspaceTsdkVersion();
if (
(vscodeTsdkVersion && !semver.gte(vscodeTsdkVersion, '5.3.0'))
Expand Down Expand Up @@ -155,7 +155,7 @@ function getCurrentHybridModeStatus(report = false) {
return config.server.hybridMode;
}

function getVScodeTsdkVersion() {
function getVSCodeTsdkVersion() {
const nightly = vscode.extensions.getExtension('ms-vscode.vscode-typescript-next');
if (nightly) {
const libPath = path.join(
Expand Down

0 comments on commit f3f528a

Please sign in to comment.