summaryrefslogtreecommitdiff
path: root/common/content/commandline.js
diff options
context:
space:
mode:
authorKris Maglione <maglione.k@gmail.com>2010-11-13 10:55:05 -0500
committerKris Maglione <maglione.k@gmail.com>2010-11-13 10:55:05 -0500
commit152f8523af312cf93535bc932f4dee94ae1d6697 (patch)
tree456e24b0967088298784ace324afcab9e9a7f701 /common/content/commandline.js
parent9148d00ede11c9815cd6dbc50bcab4c2fcd7fe71 (diff)
downloadpentadactyl-152f8523af312cf93535bc932f4dee94ae1d6697.tar.gz
Fix some anglicised spellings and other typos.
Diffstat (limited to 'common/content/commandline.js')
-rw-r--r--common/content/commandline.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/common/content/commandline.js b/common/content/commandline.js
index 557f8f55..7918cabe 100644
--- a/common/content/commandline.js
+++ b/common/content/commandline.js
@@ -577,7 +577,7 @@ const CommandLine = Module("commandline", {
},
/**
- * Display a multiline message.
+ * Display a multi-line message.
*
* @param {string} str
* @param {string} highlightGroup
@@ -752,7 +752,7 @@ const CommandLine = Module("commandline", {
},
/**
- * Get a multiline input from a user, up to but not including the line
+ * Get a multi-line input from a user, up to but not including the line
* which matches the given regular expression. Then execute the
* callback with that string as a parameter.
*
@@ -915,7 +915,7 @@ const CommandLine = Module("commandline", {
},
/**
- * Handle events when we are in multiline output mode, these come from
+ * Handle events when we are in multi-line output mode, these come from
* dactyl when modes.extended & modes.MULTILINE_OUTPUT and also from
* #dactyl-multiline-output in the XUL.
*
@@ -1120,7 +1120,7 @@ const CommandLine = Module("commandline", {
},
/**
- * Update or remove the multiline output widget's "MORE" prompt.
+ * Update or remove the multi-line output widget's "MORE" prompt.
*
* @param {boolean} force If true, "-- More --" is shown even if we're
* at the end of the output.
@@ -1269,7 +1269,7 @@ const CommandLine = Module("commandline", {
}
// search the history for the first item matching the current
- // commandline string
+ // command-line string
while (true) {
this.index += diff;
if (this.index < 0 || this.index > this.store.length) {