Skip to content

Commit

Permalink
Rename createNativeServer
Browse files Browse the repository at this point in the history
  • Loading branch information
charliermarsh committed Jun 8, 2024
1 parent 969d0c6 commit 3d6100f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export type IInitOptions = {
globalSettings: ISettings;
};

async function createnativeServer(
async function createNativeServer(
settings: ISettings,
serverId: string,
serverName: string,
Expand Down Expand Up @@ -166,7 +166,7 @@ export async function restartServer(

let newLSClient;
if (workspaceSettings.nativeServer || globalSettings.nativeServer) {
newLSClient = await createnativeServer(workspaceSettings, serverId, serverName, outputChannel, {
newLSClient = await createNativeServer(workspaceSettings, serverId, serverName, outputChannel, {
settings: extensionSettings,
globalSettings: globalSettings,
});
Expand Down

0 comments on commit 3d6100f

Please sign in to comment.