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 lib/transports/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = exports = {
exports.polling.upgradesTo = ['websocket'];

/**
* Polling polimorphic constructor.
* Polling polymorphic constructor.
*
* @api private
*/
Expand Down
2 changes: 1 addition & 1 deletion test/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
var eio = require('..');

/**
* Listen shortcut that fires a callback on an epheemal port.
* Listen shortcut that fires a callback on an ephemeral port.
*/

exports.listen = function (opts, fn) {
Expand Down
2 changes: 1 addition & 1 deletion test/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ describe('server', function () {
// at this time server's `connection` should have been fired
expect(serverSocket).to.be.an('object');

// OPENED readyState is expected - we qre actually polling
// OPENED readyState is expected - we are actually polling
expect(socket.transport.pollXhr.xhr.readyState).to.be(1);

// 2 requests sent to the server over an unique port means
Expand Down