Skip to content

Commit d2233bf

Browse files
committed
fix typos
1 parent 63b02db commit d2233bf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/vs/workbench/contrib/accessibility/browser/accessibility.contribution.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ workbenchRegistry.registerWorkbenchContribution(EditorAccessibilityHelpContribut
126126

127127

128128

129-
class HoverAccessibileViewContribution extends Disposable {
129+
class HoverAccessibleViewContribution extends Disposable {
130130
static ID: 'hoverAccessibleViewContribution';
131131
constructor() {
132132
super();
@@ -163,5 +163,5 @@ class HoverAccessibileViewContribution extends Disposable {
163163
}
164164

165165
const workbenchContributionsRegistry = Registry.as<IWorkbenchContributionsRegistry>(WorkbenchExtensions.Workbench);
166-
workbenchContributionsRegistry.registerWorkbenchContribution(HoverAccessibileViewContribution, LifecyclePhase.Eventually);
166+
workbenchContributionsRegistry.registerWorkbenchContribution(HoverAccessibleViewContribution, LifecyclePhase.Eventually);
167167

src/vs/workbench/contrib/chat/browser/chat.contribution.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ class ChatResolverContribution extends Disposable {
117117
}
118118
}
119119

120-
class ChatAccessibileViewContribution extends Disposable {
120+
class ChatAccessibleViewContribution extends Disposable {
121121
static ID: 'chatAccessibleViewContribution';
122122
constructor() {
123123
super();
@@ -164,7 +164,7 @@ class ChatAccessibileViewContribution extends Disposable {
164164

165165
const workbenchContributionsRegistry = Registry.as<IWorkbenchContributionsRegistry>(WorkbenchExtensions.Workbench);
166166
workbenchContributionsRegistry.registerWorkbenchContribution(ChatResolverContribution, LifecyclePhase.Starting);
167-
workbenchContributionsRegistry.registerWorkbenchContribution(ChatAccessibileViewContribution, LifecyclePhase.Eventually);
167+
workbenchContributionsRegistry.registerWorkbenchContribution(ChatAccessibleViewContribution, LifecyclePhase.Eventually);
168168
Registry.as<IEditorFactoryRegistry>(EditorExtensions.EditorFactory).registerEditorSerializer(ChatEditorInput.TypeID, ChatEditorInputSerializer);
169169

170170
registerChatActions();

0 commit comments

Comments
 (0)