From b765c5e96cf21f1f9fb66eb8910a3b07ae2ae8b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20N=C4=9Bmec?= Date: Mon, 6 Dec 2010 02:29:52 +0100 Subject: [PATCH] Typos and whitespace fixes. --- common/content/autocommands.js | 16 ++++++++-------- common/content/events.js | 2 +- common/modules/base.jsm | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/common/content/autocommands.js b/common/content/autocommands.js index 3cc58c9a..6dfba95e 100644 --- a/common/content/autocommands.js +++ b/common/content/autocommands.js @@ -80,15 +80,15 @@ const AutoCommands = Module("autocommands", { { template.map(cmds, function ([event, items]) - - {event} - - + + + {event} + + + template.map(items, function (item) - -  {item.pattern.source} - {item.command} - )) + +  {item.pattern.source} + {item.command} + )) } ); }, diff --git a/common/content/events.js b/common/content/events.js index 6a89d7b0..7dee4535 100644 --- a/common/content/events.js +++ b/common/content/events.js @@ -701,7 +701,7 @@ const Events = Module("events", { // access to the real focus target // Huh? --djk onFocusChange: function onFocusChange(event) { - // command line has it's own focus change handler + // command line has its own focus change handler if (dactyl.mode == modes.COMMAND_LINE) return; diff --git a/common/modules/base.jsm b/common/modules/base.jsm index 5cb5df87..7eddc2fc 100644 --- a/common/modules/base.jsm +++ b/common/modules/base.jsm @@ -833,7 +833,7 @@ function XPCOM(interfaces, superClass) { } /** - * Constructs a mew Module class and instantiates an instance into the current + * Constructs a new Module class and instantiates an instance into the current * module global object. * * @param {string} name The name of the instance.