diff --git a/src/vs/workbench/api/node/extHostApiCommands.ts b/src/vs/workbench/api/node/extHostApiCommands.ts index abdaed74286ff6a5717d41da869d49af7256fb0e..7b4810a9138d2976a41119cbc9f667819ab3206b 100644 --- a/src/vs/workbench/api/node/extHostApiCommands.ts +++ b/src/vs/workbench/api/node/extHostApiCommands.ts @@ -87,7 +87,7 @@ class ExtHostApiCommands { args: [ { name: 'uri', description: 'Uri of a text document', constraint: URI }, { name: 'position', description: 'Position in a text document', constraint: types.Position }, - { name: 'triggerCharacter', description: 'Trigger signature help when the user types the character, like `,` or `(`', constraint: String } + { name: 'triggerCharacter', description: '(optional) Trigger signature help when the user types the character, like `,` or `(`' } ], returns: 'A promise that resolves to SignatureHelp.' }); @@ -103,7 +103,7 @@ class ExtHostApiCommands { args: [ { name: 'uri', description: 'Uri of a text document', constraint: URI }, { name: 'position', description: 'Position in a text document', constraint: types.Position }, - { name: 'triggerCharacter', description: 'Trigger completion when the user types the character, like `,` or `(`', constraint: String } + { name: 'triggerCharacter', description: '(optional) Trigger completion when the user types the character, like `,` or `(`' } ], returns: 'A promise that resolves to a CompletionList-instance.' });