@@ -86,12 +86,12 @@ can access the editor in future calls to getHints and insertHints.
8686param {'Editor'} editor
8787A non-null editor object for the active window.
8888
89- param {string } implicitChar
89+ param {String } implicitChar
9090Either null, if the hinting request was explicit, or a single character
9191that represents the last insertion and that indicates an implicit
9292hinting request.
9393
94- return {boolean }
94+ return {Boolean }
9595Determines whether the current provider is able to provide hints for
9696the given editor context and, in case implicitChar is non- null,
9797whether it is appropriate to do so.
@@ -152,7 +152,7 @@ once for each such editor change. Consequently, the provider may also
152152assume that the document will not be changed outside of the editor
153153during a session.
154154
155- param {string } implicitChar
155+ param {String } implicitChar
156156Either null, if the request to update the hint list was a result of
157157navigation, or a single character that represents the last insertion.
158158
@@ -195,17 +195,17 @@ or not the end of the session should be immediately followed by a new
195195explicit hinting request, which may result in a new hinting session
196196being opened with some provider, but not necessarily the current one.
197197
198- param {string } hint
198+ param {String } hint
199199The hint to be inserted into the editor context for the current session.
200200
201- return {boolean }
201+ return {Boolean }
202202Indicates whether the manager should follow hint insertion with an
203203explicit hint request.
204204
205205
206206__ CodeHintProvider.insertHintOnTab__
207207
208- type {boolean } insertHintOnTab
208+ type {Boolean } insertHintOnTab
209209Indicates whether the CodeHintManager should request that the provider of
210210the current session insert the currently selected hint on tab key events,
211211or if instead a tab character should be inserted into the editor. If omitted,
0 commit comments