diff --git a/_specifications/specification-3-16.md b/_specifications/specification-3-16.md index f5b863cba..5b9433109 100644 --- a/_specifications/specification-3-16.md +++ b/_specifications/specification-3-16.md @@ -4382,14 +4382,15 @@ _Server Capability_: */ export interface CompletionOptions extends WorkDoneProgressOptions { /** - * Most tools trigger 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. - * - * If code complete should automatically be trigger on characters not being + * 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 * `triggerCharacters`. */