From 0f19baf1cf45d2ecd885a67f4a01bdc37be31d4e Mon Sep 17 00:00:00 2001 From: Matt Bierner Date: Wed, 10 Nov 2021 17:38:25 -0800 Subject: [PATCH] Fix spelling --- src/vs/workbench/services/editor/common/editorGroupFinder.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/services/editor/common/editorGroupFinder.ts b/src/vs/workbench/services/editor/common/editorGroupFinder.ts index d722d2137d9..a53f1a3e1ee 100644 --- a/src/vs/workbench/services/editor/common/editorGroupFinder.ts +++ b/src/vs/workbench/services/editor/common/editorGroupFinder.ts @@ -15,7 +15,7 @@ import { PreferredGroup, SIDE_GROUP } from 'vs/workbench/services/editor/common/ /** * Finds the target `IEditorGroup` given the instructions provided * that is best for the editor and matches the preferred group if - * posisble. + * possible. */ export function findGroup(accessor: ServicesAccessor, editor: IUntypedEditorInput, preferredGroup: PreferredGroup | undefined): [IEditorGroup, EditorActivation | undefined]; export function findGroup(accessor: ServicesAccessor, editor: EditorInputWithOptions, preferredGroup: PreferredGroup | undefined): [IEditorGroup, EditorActivation | undefined];