From b433ce535b5ce45d3d247fdacd5982dd2ce46a93 Mon Sep 17 00:00:00 2001 From: Christopher Schleiden Date: Tue, 15 Nov 2022 16:26:20 -0800 Subject: [PATCH] Update comment --- actions-languageservice/src/context-providers/config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions-languageservice/src/context-providers/config.ts b/actions-languageservice/src/context-providers/config.ts index 49f61dd..08c441f 100644 --- a/actions-languageservice/src/context-providers/config.ts +++ b/actions-languageservice/src/context-providers/config.ts @@ -7,8 +7,8 @@ export type ContextProviderConfig = { }; /** - * DynamicDictionary is a dictionary that returns an empty DynamicDictionary for - * any key that is not present. + * DynamicDictionary is a dictionary that returns an empty DynamicDictionary (or other given type) + * for any key that is not present. */ export class DynamicDictionary extends data.Dictionary { constructor(pairs: Pair[], private creator: () => T = () => new data.Dictionary() as T) {