1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 15:37:59 +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

@@ -656,7 +656,7 @@ const Buffer = Module("buffer", {
.QueryInterface(Ci.nsISelectionController),
/**
* Opens the appropriate context menu for <b>elem</b>.
* Opens the appropriate context menu for *elem*.
*
* @param {Node} elem The context element.
*/
@@ -697,7 +697,7 @@ const Buffer = Module("buffer", {
},
/**
* Scrolls the buffer laterally <b>cols</b> columns.
* Scrolls the buffer laterally *cols* columns.
*
* @param {number} cols The number of columns to scroll. A positive
* value scrolls right and a negative value left.
@@ -714,7 +714,7 @@ const Buffer = Module("buffer", {
},
/**
* Scrolls the buffer vertically <b>lines</b> rows.
* Scrolls the buffer vertically *lines* rows.
*
* @param {number} lines The number of lines to scroll. A positive
* value scrolls down and a negative value up.
@@ -724,7 +724,7 @@ const Buffer = Module("buffer", {
},
/**
* Scrolls the buffer vertically <b>pages</b> pages.
* Scrolls the buffer vertically *pages* pages.
*
* @param {number} pages The number of pages to scroll. A positive
* value scrolls down and a negative value up.
@@ -934,8 +934,8 @@ const Buffer = Module("buffer", {
/**
* Opens a viewer to inspect the source of the current buffer or the
* specified <b>url</b>. Either the default viewer or the configured
* external editor is used.
* specified *url*. Either the default viewer or the configured external
* editor is used.
*
* @param {string} url The URL of the source.
* @default The current buffer.