1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 23:47:58 +01:00

Fix some typos.

This commit is contained in:
Štěpán Němec
2011-07-06 16:19:33 +02:00
parent 30c24f8a5c
commit 0add26f61a
4 changed files with 5 additions and 5 deletions

View File

@@ -103,7 +103,7 @@ var AbbrevHive = Class("AbbrevHive", Contexts.Hive, {
this._store = {}; this._store = {};
}, },
/** @property {boolean} True if there are no abbreviations */ /** @property {boolean} True if there are no abbreviations. */
get empty() !values(this._store).nth(util.identity, 0), get empty() !values(this._store).nth(util.identity, 0),
/** /**

View File

@@ -482,7 +482,7 @@ var Buffer = Module("buffer", {
}, },
/** /**
* Find the counth last link on a page matching one of the given * Find the *count*th last link on a page matching one of the given
* regular expressions, or with a @rel or @rev attribute matching * regular expressions, or with a @rel or @rev attribute matching
* the given relation. Each frame is searched beginning with the * the given relation. Each frame is searched beginning with the
* last link and progressing to the first, once checking for * last link and progressing to the first, once checking for
@@ -927,7 +927,7 @@ var Buffer = Module("buffer", {
* url: The URL to view. * url: The URL to view.
* doc: The document to view. * doc: The document to view.
* line: The line to select. * line: The line to select.
* column: the column to select. * column: The column to select.
* *
* If no URL is provided, the current document is used. * If no URL is provided, the current document is used.
* @default The current buffer. * @default The current buffer.

View File

@@ -69,7 +69,7 @@ if (!Object.defineProperties)
if (!Object.freeze) if (!Object.freeze)
Object.freeze = function freeze(obj) {}; Object.freeze = function freeze(obj) {};
if (!Object.getPropertyDescriptor) if (!Object.getPropertyDescriptor)
Object.getPropertyDescriptor = function getOwnPropertyDescriptor(obj, prop) { Object.getPropertyDescriptor = function getPropertyDescriptor(obj, prop) {
try { try {
let desc = { let desc = {
configurable: true, configurable: true,

View File

@@ -115,7 +115,7 @@
- Added 's' and 'e' flags to :pageinfo command. [b7] - Added 's' and 'e' flags to :pageinfo command. [b7]
- Added :pintab and :unpintab commands. [b7] - Added :pintab and :unpintab commands. [b7]
- Extension manipulation commands, including :extenable, :extdisable, - Extension manipulation commands, including :extenable, :extdisable,
and :exttoggle, now accept a -types argument. and :exttoggle, now accept a -types argument. [b7]
- :tabmove now moves to the position of tab N, not after it. - :tabmove now moves to the position of tab N, not after it.
Without arguments it no longer moves the tab to the end of Without arguments it no longer moves the tab to the end of
the list. [b7] the list. [b7]