From 7a979691044778f74306783b08a9b262ee8a1757 Mon Sep 17 00:00:00 2001 From: "Davide P. Cervone" Date: Thu, 6 Feb 2014 11:02:55 -0500 Subject: [PATCH] Fix a typo in comments and remove an unused variable --- unpacked/MathJax.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/unpacked/MathJax.js b/unpacked/MathJax.js index e101e0a78..500dc7113 100644 --- a/unpacked/MathJax.js +++ b/unpacked/MathJax.js @@ -46,7 +46,7 @@ if (window.MathJax) {window.MathJax = {AuthorConfig: window.MathJax}} // MathJax.isPacked = true; // This line is uncommented by the packer. MathJax.version = "2.3"; -MathJax.fileversion = "2.3.1"; +MathJax.fileversion = "2.3.2"; /**********************************************************/ @@ -543,7 +543,7 @@ MathJax.fileversion = "2.3.1"; call: function () {this.callback(this); this.Process()}, // - // A listener calls this to register intrest in the signal (so it will be called + // A listener calls this to register interest in the signal (so it will be called // when posts occur). If ignorePast is true, it will not be sent the post history. // Interest: function (callback,ignorePast,priority) { @@ -580,7 +580,7 @@ MathJax.fileversion = "2.3.1"; // // Execute the message hooks for the given message // - ExecuteHooks: function (msg,more) { + ExecuteHooks: function (msg) { var type = ((msg instanceof Array) ? msg[0] : msg); if (!this.hooks[type]) {return null} return this.hooks[type].Execute(msg);