1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 07:24:13 +01:00

Replace use of <b>arg</b> in API docs with *arg*.

--HG--
extra : rebase_source : f127ac4f494053e4306074f5acded34b2d363eef
This commit is contained in:
Doug Kearns
2010-10-21 22:55:15 +11:00
parent f3d194b00b
commit 377f8b01d4
22 changed files with 205 additions and 232 deletions

View File

@@ -198,7 +198,7 @@ const Events = Module("events", {
},
/**
* Returns all macros matching <b>filter</b>.
* Returns all macros matching *filter*.
*
* @param {string} filter A regular expression filter string. A null
* filter selects all macros.
@@ -209,7 +209,7 @@ const Events = Module("events", {
},
/**
* Deletes all macros matching <b>filter</b>.
* Deletes all macros matching *filter*.
*
* @param {string} filter A regular expression filter string. A null
* filter deletes all macros.
@@ -549,8 +549,8 @@ const Events = Module("events", {
},
/**
* Whether <b>key</b> is a key code defined to accept/execute input on
* the command line.
* Whether *key* is a key code defined to accept/execute input on the
* command line.
*
* @param {string} key The key code to test.
* @returns {boolean}
@@ -558,8 +558,8 @@ const Events = Module("events", {
isAcceptKey: function (key) key == "<Return>" || key == "<C-j>" || key == "<C-m>",
/**
* Whether <b>key</b> is a key code defined to reject/cancel input on
* the command line.
* Whether *key* is a key code defined to reject/cancel input on the
* command line.
*
* @param {string} key The key code to test.
* @returns {boolean}