diff --git a/CHANGELOG b/CHANGELOG index 8e878206..dbe0670e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -20,7 +20,7 @@ August 15, 2013 - v0.10.0 * Update Travis and NPM building (Nick Schonning) * Remove Uglify task (Nick Schonning) * Add YUITest custom task (Nick Schonning) -* Add .gitattibutes for line endings (Nick Schonning) +* Add .gitattributes for line endings (Nick Schonning) * Add parser-lib concatination (Nick Schonning) * Fix package.json path for Ant (Nick Schonning) * Fix linting errors in tests (Nick Schonning) diff --git a/lib/yuitest.js b/lib/yuitest.js index 4a6c8325..c9d1f6a4 100644 --- a/lib/yuitest.js +++ b/lib/yuitest.js @@ -2683,13 +2683,13 @@ YUITest.Event = (function() { * @param {int} detail (Optional) The number of times the mouse button has * been used. The default value is 1. * @param {int} screenX (Optional) The x-coordinate on the screen at which - * point the event occured. The default is 0. + * point the event occurred. The default is 0. * @param {int} screenY (Optional) The y-coordinate on the screen at which - * point the event occured. The default is 0. + * point the event occurred. The default is 0. * @param {int} clientX (Optional) The x-coordinate on the client at which - * point the event occured. The default is 0. + * point the event occurred. The default is 0. * @param {int} clientY (Optional) The y-coordinate on the client at which - * point the event occured. The default is 0. + * point the event occurred. The default is 0. * @param {Boolean} ctrlKey (Optional) Indicates if one of the CTRL keys * is pressed while the event is firing. The default is false. * @param {Boolean} altKey (Optional) Indicates if one of the ALT keys diff --git a/src/core/Util.js b/src/core/Util.js index f804ab15..e145ce1b 100644 --- a/src/core/Util.js +++ b/src/core/Util.js @@ -5,7 +5,7 @@ CSSLint.Util = { /* * Adds all properties from supplier onto receiver, * overwriting if the same name already exists on - * reciever. + * receiver. * @param {Object} The object to receive the properties. * @param {Object} The object to provide the properties. * @return {Object} The receiver diff --git a/src/formatters/junit-xml.js b/src/formatters/junit-xml.js index e0187aae..84be0e88 100644 --- a/src/formatters/junit-xml.js +++ b/src/formatters/junit-xml.js @@ -84,7 +84,7 @@ CSSLint.addFormatter({ //ignore rollups for now if (!message.rollup) { - // build the test case seperately, once joined + // build the test case separately, once joined // we'll add it to a custom array filtered by type output.push(""); output.push("<" + type + " message=\"" + escapeSpecialCharacters(message.message) + "\">");