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.