Skip to content

Commit

Permalink
Removed extraneous spaces after call
Browse files Browse the repository at this point in the history
  • Loading branch information
imbcmdth committed Feb 20, 2014
1 parent 4519cd9 commit df4ae43
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ecmabot.js
Expand Up @@ -176,15 +176,15 @@ JSBot.prototype.help = function(context, text) {

JSBot.prototype.mdn = function(context, text, command) {
if (!text) {
return Shared.findPlus.call (this, context, command);
return Shared.findPlus.call(this, context, command);
}

Shared.google (context, "site:developer.mozilla.org "+text);
};


JSBot.prototype.command_not_found = function(context, text) {
Shared.findPlus.call (this, context, text, !context.priv);
Shared.findPlus.call(this, context, text, !context.priv);
};

// JSON.stringify([].slice.call(document.querySelectorAll('#toc-full a')).map(function(v) {return {title: v.firstChild.textContent, id: v.href.replace(/.+#/, '')};}));
Expand Down
2 changes: 1 addition & 1 deletion oftnbot.js
Expand Up @@ -394,7 +394,7 @@ util.inherits(ΩF_0Bot, Bot);
};

ΩF_0Bot.prototype.find = function(context, text) {
Shared.findPlus.call (this, context, text, !context.priv);
Shared.findPlus.call(this, context, text, !context.priv);
};

ΩF_0Bot.prototype.projects = function(context, project) {
Expand Down

0 comments on commit df4ae43

Please sign in to comment.