Skip to content

Commit 44b2613

Browse files
committed
docs: update markdown docs
1 parent 7a8cd94 commit 44b2613

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/API-Reference/editor/CodeHintManager.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,12 @@ can access the editor in future calls to getHints and insertHints.
8686
param {'Editor'} editor
8787
A non-null editor object for the active window.
8888

89-
param {string} implicitChar
89+
param {String} implicitChar
9090
Either null, if the hinting request was explicit, or a single character
9191
that represents the last insertion and that indicates an implicit
9292
hinting request.
9393

94-
return {boolean}
94+
return {Boolean}
9595
Determines whether the current provider is able to provide hints for
9696
the given editor context and, in case implicitChar is non- null,
9797
whether it is appropriate to do so.
@@ -152,7 +152,7 @@ once for each such editor change. Consequently, the provider may also
152152
assume that the document will not be changed outside of the editor
153153
during a session.
154154

155-
param {string} implicitChar
155+
param {String} implicitChar
156156
Either null, if the request to update the hint list was a result of
157157
navigation, 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
195195
explicit hinting request, which may result in a new hinting session
196196
being opened with some provider, but not necessarily the current one.
197197

198-
param {string} hint
198+
param {String} hint
199199
The hint to be inserted into the editor context for the current session.
200200

201-
return {boolean}
201+
return {Boolean}
202202
Indicates whether the manager should follow hint insertion with an
203203
explicit hint request.
204204

205205

206206
__CodeHintProvider.insertHintOnTab__
207207

208-
type {boolean} insertHintOnTab
208+
type {Boolean} insertHintOnTab
209209
Indicates whether the CodeHintManager should request that the provider of
210210
the current session insert the currently selected hint on tab key events,
211211
or if instead a tab character should be inserted into the editor. If omitted,

0 commit comments

Comments
 (0)