Skip to content

Commit

Permalink
fix: fix typo (#85090)
Browse files Browse the repository at this point in the history
  • Loading branch information
DiamondYuan authored and mjbvz committed Nov 19, 2019
1 parent 29d07e5 commit 95d8353
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -12,7 +12,7 @@ import { WebviewEditorInputFactory } from 'vs/workbench/contrib/webview/browser/
import { IWebviewWorkbenchService } from 'vs/workbench/contrib/webview/browser/webviewWorkbenchService';
import { Lazy } from 'vs/base/common/lazy';

export class CustomEditoInputFactory extends WebviewEditorInputFactory {
export class CustomEditorInputFactory extends WebviewEditorInputFactory {

public static readonly ID = CustomFileEditorInput.typeId;

Expand Down
Expand Up @@ -13,7 +13,7 @@ import { EditorDescriptor, Extensions as EditorExtensions, IEditorRegistry } fro
import { workbenchConfigurationNodeBase } from 'vs/workbench/common/configuration';
import { Extensions as WorkbenchExtensions, IWorkbenchContributionsRegistry } from 'vs/workbench/common/contributions';
import { Extensions as EditorInputExtensions, IEditorInputFactoryRegistry } from 'vs/workbench/common/editor';
import { CustomEditoInputFactory } from 'vs/workbench/contrib/customEditor/browser/customEditorInputFactory';
import { CustomEditorInputFactory } from 'vs/workbench/contrib/customEditor/browser/customEditorInputFactory';
import { ICustomEditorService } from 'vs/workbench/contrib/customEditor/common/customEditor';
import { WebviewEditor } from 'vs/workbench/contrib/webview/browser/webviewEditor';
import './commands';
Expand All @@ -35,8 +35,8 @@ Registry.as<IEditorRegistry>(EditorExtensions.Editors).registerEditor(
]);

Registry.as<IEditorInputFactoryRegistry>(EditorInputExtensions.EditorInputFactories).registerEditorInputFactory(
CustomEditoInputFactory.ID,
CustomEditoInputFactory);
CustomEditorInputFactory.ID,
CustomEditorInputFactory);

Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Configuration)
.registerConfiguration({
Expand Down

0 comments on commit 95d8353

Please sign in to comment.