diff --git a/content/commands.js b/content/commands.js
index a9c4035b..2027b2fa 100644
--- a/content/commands.js
+++ b/content/commands.js
@@ -233,7 +233,7 @@ vimperator.Commands = function() //{{{
function() { vimperator.open("chrome://mozapps/content/extensions/extensions.xul", vimperator.NEW_TAB); },
{
short_help: "Show available Browser Extensions and Themes",
- help: "You can add/remove/disable browser extensions from this dialog.
Be aware that not all Firefox extensions work, because Vimperator overrides some keybindings and changes Firefox's GUI."
+ help: "You can add/remove/disable browser extensions from this dialog.
Be aware that not all Firefox extensions work, because Vimperator overrides some key bindings and changes Firefox's GUI."
}
));
addDefaultCommand(new vimperator.Command(["ba[ck]"],
@@ -624,7 +624,7 @@ vimperator.Commands = function() //{{{
usage: ["h[elp] {subject}"],
short_help: "Open the help window",
help: "You can jump to the specified {subject} with :help {subject}.
" +
- "Make sure you use the full vim notation when jumping to {subject}. This means:
" +
+ "Make sure you use the full Vim notation when jumping to {subject}. This means:
" +
"
:help :help for commands (: prefix):help 'complete' for options (surrounded by ' and ')[file] is specified then ~/.vimperatorrc is written unless this file already exists. " +
"The special version will overwrite [file] if it exists.:prefs! opens about:config in the current tab where you can change advanced Firefox preferences."
}
));
@@ -1637,7 +1637,7 @@ vimperator.Commands = function() //{{{
short_help: "Profile a piece of code or a command",
help: "Runs {code} {count} times (default 1) and returns the elapsed time. " +
"{code} is always passed to JavaScript's eval(), which might be slow, so take the results with a grain of salt.{code} starts with a :, it is executed as a vimperator command.{code} starts with a :, it is executed as a Vimperator command.{pattern}.{pattern}.'ignorecase' is on. " +
"\"\\C\" forces case-sensitive matching for the whole pattern.'linksearch' is on. " +
@@ -998,7 +998,7 @@ vimperator.Mappings = function() //{{{
{
short_help: "Search backwards for a pattern",
usage: ["?{pattern}[?]{pattern}.{pattern}.'ignorecase' is on. " +
"\"\\C\" forces case-sensitive matching for the whole pattern.'linksearch' is on. " +
diff --git a/content/vimperator.js b/content/vimperator.js
index c72123fc..fe6093c6 100644
--- a/content/vimperator.js
+++ b/content/vimperator.js
@@ -421,7 +421,7 @@ const vimperator = (function() //{{{
open: function(urls, where, callback)
{
// convert the string to an array of converted URLs
- // -> see String.prototype.toURLArray for more details
+ // -> see vimperator.util.stringToURLArray for more details
if (typeof urls == "string")
urls = vimperator.util.stringToURLArray(urls);