Fix the typo for the method name

This commit is contained in:
Raymond Feng 2014-01-21 16:35:28 -08:00
parent 8a114c635f
commit a5242a3b77
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ MailConnector.prototype.transportForName = function(name) {
* @return {Transport} transport
*/
MailConnector.prototype.transportForName = function(name) {
MailConnector.prototype.defaultTransport = function(name) {
return this.transports[0];
}