Skip to content

Commit 8fd0248

Browse files
committed
Capitalize the first char of fields of CompletionContext
Signed-off-by: Adam Tao <[email protected]>
1 parent ae6705b commit 8fd0248

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Types.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2457,11 +2457,11 @@ type CompletionTriggerKind =
24572457
type CompletionContext =
24582458
{
24592459
/// How the completion was triggered.
2460-
triggerKind: CompletionTriggerKind
2460+
TriggerKind: CompletionTriggerKind
24612461

24622462
/// The trigger character (a single character) that has trigger code complete.
24632463
/// Is undefined if `triggerKind !== CompletionTriggerKind.TriggerCharacter`
2464-
triggerCharacter: char option
2464+
TriggerCharacter: char option
24652465
}
24662466

24672467
type CompletionParams =

0 commit comments

Comments
 (0)