diff --git a/content/commands.js b/content/commands.js
index 9bb5724f..06065dfe 100644
--- a/content/commands.js
+++ b/content/commands.js
@@ -282,7 +282,8 @@ function Commands() //{{{
{
usage: ["[count]bd[elete][!]"],
short_help: "Delete current buffer (=tab)",
- help: "Count is supported, :2bd removes two tabs and the one to the right is selected.
Do :bdelete! to select the tab to the left after removing the current tab."
+ help: "Count is supported, :2bd removes two tabs and the one to the right is selected. " +
+ "Do :bdelete! to select the tab to the left after removing the current tab."
}
));
addDefaultCommand(new Command(["beep"],
diff --git a/content/mappings.js b/content/mappings.js
index dc316da8..67d37eb1 100644
--- a/content/mappings.js
+++ b/content/mappings.js
@@ -423,7 +423,7 @@ function Mappings() //{{{
function(count) { vimperator.tabs.remove(getBrowser().mCurrentTab, count, false, 0); },
{
short_help: "Delete current buffer (=tab)",
- help: "Count is supported, 2d removes the current and next tab and the one the right is selected. " +
+ help: "Count is supported, 2d removes the current and next tab and the one to the right is selected. " +
"Does not wrap if [count] is larger than available tabs to the right.",
flags: Mappings.flags.COUNT
}
@@ -432,7 +432,7 @@ function Mappings() //{{{
function(count) { vimperator.tabs.remove(getBrowser().mCurrentTab, count, true, 0); },
{
short_help: "Delete current buffer (=tab)",
- help: "Count is supported, 2D removes the current and previous tab and the one the left is selected. " +
+ help: "Count is supported, 2D removes the current and previous tab and the one to the left is selected. " +
"Does not wrap if [count] is larger than available tabs to the left.",
flags: Mappings.flags.COUNT
}