Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
8 changes: 4 additions & 4 deletions lib/yuitest.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/core/Util.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/formatters/junit-xml.js
Original file line number Diff line number Diff line change
Expand Up @@ -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("<testcase time=\"0\" name=\"" + generateSource(message.rule) + "\">");
output.push("<" + type + " message=\"" + escapeSpecialCharacters(message.message) + "\"><![CDATA[" + message.line + ":" + message.col + ":" + escapeSpecialCharacters(message.evidence) + "]]></" + type + ">");
Expand Down