- Changes how soon matching hints are followed in in Hints mode.
+ Changes how soon matching hints are followed in Hints mode.
Possible values:
diff --git a/common/locale/en-US/various.xml b/common/locale/en-US/various.xml
index 327a7897..7abb0115 100644
--- a/common/locale/en-US/various.xml
+++ b/common/locale/en-US/various.xml
@@ -38,7 +38,7 @@
Fake key events.
- - -mode
- The in which to feed the keys (short name: -m)
+ - -mode
- The mode in which to feed the keys (short name: -m)
diff --git a/common/modules/base.jsm b/common/modules/base.jsm
index 56e37a45..dfcf7c94 100644
--- a/common/modules/base.jsm
+++ b/common/modules/base.jsm
@@ -1134,7 +1134,7 @@ const array = Class("array", Array, {
* Returns the nth member of the given array that matches the
* given predicate.
*/
- nth: function first(ary, pred, n, self) {
+ nth: function nth(ary, pred, n, self) {
for (let elem in values(ary))
if (pred.call(self, elem) && n-- === 0)
return elem;
diff --git a/common/modules/util.jsm b/common/modules/util.jsm
index 6d5f0ff1..6e152bd8 100644
--- a/common/modules/util.jsm
+++ b/common/modules/util.jsm
@@ -267,7 +267,7 @@ const Util = Module("Util", XPCOM([Ci.nsIObserver, Ci.nsISupportsWeakReference])
return stack.top;
},
- compileMacro: function compileFormat(macro, keepUnknown) {
+ compileMacro: function compileMacro(macro, keepUnknown) {
let stack = [frame()];
stack.__defineGetter__("top", function () this[this.length - 1]);
diff --git a/pentadactyl/NEWS b/pentadactyl/NEWS
index 459b8b84..be34680f 100644
--- a/pentadactyl/NEWS
+++ b/pentadactyl/NEWS
@@ -61,7 +61,7 @@
- Added -keyword, -tags, -title to :delbmarks.
- Added :extupdate command.
- Added :feedkeys command.
- - Added -sort option to :history
+ - Added -sort option to :history.
- Added several new options, including -javascript, to :abbrev and :map.
- Added :mksyntax command.
- :open now only opens files beginning with /, ./, ../, or ~/
@@ -71,15 +71,15 @@
- Added -agent flag to :style.
- The -append flag now updates existing properties rather than
simply appending its arguments to the previous value.
- - Active filters are not highlighted in :style listings
+ - Active filters are not highlighted in :style listings.
- :style-related commands now divide their completions between
those active and inactive for the current site.
- - CSS property name completion is not available
+ - CSS property name completion is not available.
* IMPORTANT option changes:
- 'cdpath' and 'runtimepath' no longer treat ",,"
specially. Use "." instead.
- 'incsearch', 'hlsearch', 'ignorecase', and 'smartcase' have
- been replaced with 'incfind', 'hlfind', and 'findcase'
+ been replaced with 'incfind', 'hlfind', and 'findcase'.
- 'extendedhinttags' is now a regexpmap rather than a
string.
- 'guioptions' default value has changed.