From 980921d038b3803e3014fbd9e299fb8675dfa628 Mon Sep 17 00:00:00 2001 From: Steve Dignam Date: Fri, 9 Jan 2026 21:50:32 -0700 Subject: [PATCH 1/2] Fix typo in CompletionOptions interface --- _specifications/specification-3-16.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/_specifications/specification-3-16.md b/_specifications/specification-3-16.md index f5b863cba..117e720eb 100644 --- a/_specifications/specification-3-16.md +++ b/_specifications/specification-3-16.md @@ -4382,14 +4382,14 @@ _Server Capability_: */ export interface CompletionOptions extends WorkDoneProgressOptions { /** - * Most tools trigger completion request automatically without explicitly + * Most tools trigger a completion request automatically without explicitly * requesting it using a keyboard shortcut (e.g. Ctrl+Space). Typically they * do so when the user starts to type an identifier. For example if the user - * types `c` in a JavaScript file code complete will automatically pop up - * present `console` besides others as a completion item. Characters that - * make up identifiers don't need to be listed here. + * types `c` in a JavaScript file, code completion will automatically + * present `console` as a completion item. + * Characters that make up identifiers don't need to be listed here. * - * If code complete should automatically be trigger on characters not being + * If code completion should automatically trigger on characters not * valid inside an identifier (for example `.` in JavaScript) list them in * `triggerCharacters`. */ From f083319eb52133f664f76535eaa1f72a5b37b5d9 Mon Sep 17 00:00:00 2001 From: Steve Dignam Date: Fri, 9 Jan 2026 22:00:39 -0700 Subject: [PATCH 2/2] adjust --- _specifications/specification-3-16.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/_specifications/specification-3-16.md b/_specifications/specification-3-16.md index 117e720eb..5b9433109 100644 --- a/_specifications/specification-3-16.md +++ b/_specifications/specification-3-16.md @@ -4382,12 +4382,13 @@ _Server Capability_: */ export interface CompletionOptions extends WorkDoneProgressOptions { /** - * Most tools trigger a completion request automatically without explicitly - * requesting it using a keyboard shortcut (e.g. Ctrl+Space). Typically they - * do so when the user starts to type an identifier. For example if the user - * types `c` in a JavaScript file, code completion will automatically - * present `console` as a completion item. - * Characters that make up identifiers don't need to be listed here. + * Most tools trigger a completion request automatically without an explicit + * keyboard shortcut (e.g. Ctrl+Space). Typically they do so when the user + * starts to type an identifier. For example if the user types `c` in a + * JavaScript file, code completion will automatically show `console` as a + * completion item. + * + * Characters that make up identifiers don't need to be listed here. * * If code completion should automatically trigger on characters not * valid inside an identifier (for example `.` in JavaScript) list them in