Skip to content

Commit aa0e7b7

Browse files
authored
Merge pull request microsoft#157559 from ChaseKnowlden/cheerful-pigeon
Fix a typo in secret state
2 parents ca6a631 + 6e725c4 commit aa0e7b7

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

src/vs/workbench/api/common/extHost.api.impl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ import { ExtHostBulkEdits } from 'vs/workbench/api/common/extHostBulkEdits';
7878
import { IExtHostFileSystemInfo } from 'vs/workbench/api/common/extHostFileSystemInfo';
7979
import { ExtHostTesting } from 'vs/workbench/api/common/extHostTesting';
8080
import { ExtHostUriOpeners } from 'vs/workbench/api/common/extHostUriOpener';
81-
import { IExtHostSecretState } from 'vs/workbench/api/common/exHostSecretState';
81+
import { IExtHostSecretState } from 'vs/workbench/api/common/extHostSecretState';
8282
import { IExtHostEditorTabs } from 'vs/workbench/api/common/extHostEditorTabs';
8383
import { IExtHostTelemetry } from 'vs/workbench/api/common/extHostTelemetry';
8484
import { ExtHostNotebookKernels } from 'vs/workbench/api/common/extHostNotebookKernels';

src/vs/workbench/api/common/extHost.common.services.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { IExtHostApiDeprecationService, ExtHostApiDeprecationService, } from 'vs
2020
import { IExtHostWindow, ExtHostWindow } from 'vs/workbench/api/common/extHostWindow';
2121
import { IExtHostConsumerFileSystem, ExtHostConsumerFileSystem } from 'vs/workbench/api/common/extHostFileSystemConsumer';
2222
import { IExtHostFileSystemInfo, ExtHostFileSystemInfo } from 'vs/workbench/api/common/extHostFileSystemInfo';
23-
import { IExtHostSecretState, ExtHostSecretState } from 'vs/workbench/api/common/exHostSecretState';
23+
import { IExtHostSecretState, ExtHostSecretState } from 'vs/workbench/api/common/extHostSecretState';
2424
import { ExtHostTelemetry, IExtHostTelemetry } from 'vs/workbench/api/common/extHostTelemetry';
2525
import { ExtHostEditorTabs, IExtHostEditorTabs } from 'vs/workbench/api/common/extHostEditorTabs';
2626
import { ExtHostLoggerService } from 'vs/workbench/api/common/extHostLoggerService';

src/vs/workbench/api/common/extHostExtensionService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import { IExtHostTunnelService } from 'vs/workbench/api/common/extHostTunnelServ
3636
import { IExtHostTerminalService } from 'vs/workbench/api/common/extHostTerminalService';
3737
import { Emitter, Event } from 'vs/base/common/event';
3838
import { IExtensionActivationHost, checkActivateWorkspaceContainsExtension } from 'vs/workbench/services/extensions/common/workspaceContains';
39-
import { ExtHostSecretState, IExtHostSecretState } from 'vs/workbench/api/common/exHostSecretState';
39+
import { ExtHostSecretState, IExtHostSecretState } from 'vs/workbench/api/common/extHostSecretState';
4040
import { ExtensionSecrets } from 'vs/workbench/api/common/extHostSecrets';
4141
import { Schemas } from 'vs/base/common/network';
4242
import { IResolveAuthorityResult } from 'vs/workbench/services/extensions/common/extensionHostProxy';

src/vs/workbench/api/common/extHostSecrets.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import type * as vscode from 'vscode';
77

8-
import { ExtHostSecretState } from 'vs/workbench/api/common/exHostSecretState';
8+
import { ExtHostSecretState } from 'vs/workbench/api/common/extHostSecretState';
99
import { ExtensionIdentifier, IExtensionDescription } from 'vs/platform/extensions/common/extensions';
1010
import { Emitter, Event } from 'vs/base/common/event';
1111

0 commit comments

Comments
 (0)