@@ -47,13 +47,13 @@ __CodeHintProvider Overview:__
4747
4848A code hint provider should implement the following three functions:
4949
50- - ` CodeHintProvider.hasHints(editor, implicitChar) `
51- - ` CodeHintProvider.getHints(implicitChar) `
52- - ` CodeHintProvider.insertHint(hint) `
50+ - ` CodeHintProvider.hasHints(' editor', ' implicitChar' ) `
51+ - ` CodeHintProvider.getHints(' implicitChar' ) `
52+ - ` CodeHintProvider.insertHint(' hint' ) `
5353
5454The behavior of these three functions is described in detail below.
5555
56- __ CodeHintProvider.hasHints(editor, implicitChar)__
56+ __ CodeHintProvider.hasHints(' editor', ' implicitChar' )__
5757
5858The method by which a provider indicates intent to provide hints for a
5959given editor. The manager calls this method both when hints are
@@ -83,7 +83,7 @@ may wish to prepare to cache data suitable for the current session. In
8383particular, it should keep a reference to the editor object so that it
8484can access the editor in future calls to getHints and insertHints.
8585
86- param {Editor} editor
86+ param {' Editor' } editor
8787A non-null editor object for the active window.
8888
8989param {string} implicitChar
@@ -97,7 +97,7 @@ the given editor context and, in case implicitChar is non- null,
9797whether it is appropriate to do so.
9898
9999
100- __ CodeHintProvider.getHints(implicitChar)__
100+ __ CodeHintProvider.getHints(' implicitChar' )__
101101
102102The method by which a provider provides hints for the editor context
103103associated with the current session. The getHints method is called only
@@ -183,7 +183,7 @@ of prefix matching, or can provide its own emphasis if it wishes to use
183183a more sophisticated matching algorithm.
184184
185185
186- __ CodeHintProvider.insertHint(hint)__
186+ __ CodeHintProvider.insertHint(' hint' )__
187187
188188The method by which a provider inserts a hint into the editor context
189189associated with the current session. The provider may assume that the
0 commit comments