From 64760aae135ff59c981c226f59526dcc5c5b9528 Mon Sep 17 00:00:00 2001 From: Andrew Pareles Date: Tue, 31 Dec 2024 13:54:08 -0800 Subject: [PATCH] comment --- .../void/browser/helperServices/consistentItemService.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/vs/workbench/contrib/void/browser/helperServices/consistentItemService.ts b/src/vs/workbench/contrib/void/browser/helperServices/consistentItemService.ts index b9f225e9..be4e679e 100644 --- a/src/vs/workbench/contrib/void/browser/helperServices/consistentItemService.ts +++ b/src/vs/workbench/contrib/void/browser/helperServices/consistentItemService.ts @@ -7,8 +7,7 @@ import { InstantiationType, registerSingleton } from '../../../../../platform/in import { createDecorator } from '../../../../../platform/instantiation/common/instantiation.js'; -// lets you add a "consistent" item to a Model (aka URI), -// instead of just to a single editor +// lets you add a "consistent" item to a Model (aka URI), instead of just to a single editor type AddItemInputs = { uri: URI; fn: (editor: ICodeEditor) => (() => void); }