Skip to content

Commit 97d3119

Browse files
devvaannshabose
authored andcommitted
docs: fix further build fail issues
1 parent 664fdf1 commit 97d3119

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/API-Reference/command/KeyBindingManager.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ under use preset dropdown. For EG. distribute a `netbeans editor` shortcuts pack
180180
| --- | --- | --- |
181181
| packID | <code>string</code> | A unique ID for the pack. Use `extensionID.name` format to avoid collisions. |
182182
| packName | <code>string</code> | A name for the pack. |
183-
| keyMap | <code>Object</code> | a keymap of the format {`Ctrl-Alt-L`: `file.liveFilePreview`} depending on the platform. The extension should decide the correct keymap based on the platform before calling this function. |
183+
| keyMap | <code>Object</code> | a keymap of the format `{'Ctrl-Alt-L': 'file.liveFilePreview'}` depending on the platform. The extension should decide the correct keymap based on the platform before calling this function. |
184184

185185
<a name="getAllCustomKeymapPacks"></a>
186186

src/command/KeyBindingManager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1683,7 +1683,7 @@ define(function (require, exports, module) {
16831683
*
16841684
* @param {string} packID - A unique ID for the pack. Use `extensionID.name` format to avoid collisions.
16851685
* @param {string} packName - A name for the pack.
1686-
* @param {Object} keyMap - a keymap of the format {`Ctrl-Alt-L`: `file.liveFilePreview`} depending on the platform.
1686+
* @param {Object} keyMap - a keymap of the format `{'Ctrl-Alt-L': 'file.liveFilePreview'}` depending on the platform.
16871687
* The extension should decide the correct keymap based on the platform before calling this function.
16881688
*/
16891689
function registerCustomKeymapPack(packID, packName, keyMap) {

0 commit comments

Comments
 (0)