Skip to content

Commit

Permalink
s/close/finalize/ -- I missed one rename in the last commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoglan committed Dec 24, 2012
1 parent b86f505 commit 87f1aba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/faye/websocket/api.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ var API = {
finalize.call(this); finalize.call(this);
} else { } else {
if (this._parser.close) this._parser.close(code, reason, finalize, this); if (this._parser.close) this._parser.close(code, reason, finalize, this);
else close.call(this); else finalize.call(this);
} }
} }
} }
Expand Down

0 comments on commit 87f1aba

Please sign in to comment.