Skip to content

Commit 7a8cd94

Browse files
committed
fix: jsdoc-to-mdx expects types to be in title case
1 parent b0a9aa1 commit 7a8cd94

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/editor/CodeHintManager.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,12 @@
102102
* param {'Editor'} editor
103103
* A non-null editor object for the active window.
104104
*
105-
* param {string} implicitChar
105+
* param {String} implicitChar
106106
* Either null, if the hinting request was explicit, or a single character
107107
* that represents the last insertion and that indicates an implicit
108108
* hinting request.
109109
*
110-
* return {boolean}
110+
* return {Boolean}
111111
* Determines whether the current provider is able to provide hints for
112112
* the given editor context and, in case implicitChar is non- null,
113113
* whether it is appropriate to do so.
@@ -168,7 +168,7 @@
168168
* assume that the document will not be changed outside of the editor
169169
* during a session.
170170
*
171-
* param {string} implicitChar
171+
* param {String} implicitChar
172172
* Either null, if the request to update the hint list was a result of
173173
* navigation, or a single character that represents the last insertion.
174174
*
@@ -211,17 +211,17 @@
211211
* explicit hinting request, which may result in a new hinting session
212212
* being opened with some provider, but not necessarily the current one.
213213
*
214-
* param {string} hint
214+
* param {String} hint
215215
* The hint to be inserted into the editor context for the current session.
216216
*
217-
* return {boolean}
217+
* return {Boolean}
218218
* Indicates whether the manager should follow hint insertion with an
219219
* explicit hint request.
220220
*
221221
*
222222
* __CodeHintProvider.insertHintOnTab__
223223
*
224-
* type {boolean} insertHintOnTab
224+
* type {Boolean} insertHintOnTab
225225
* Indicates whether the CodeHintManager should request that the provider of
226226
* the current session insert the currently selected hint on tab key events,
227227
* or if instead a tab character should be inserted into the editor. If omitted,

0 commit comments

Comments
 (0)