Commit dc5416a4 authored by Henrique J. P. Barcelos's avatar Henrique J. P. Barcelos
Browse files

Fixes function name

parent 95ef6c2c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -128,7 +128,7 @@ request.Request.prototype.catch = function RP$catch(onRejected) {
    return this._rp_promise.catch.apply(this._rp_promise, arguments);
};

request.Request.prototype.finally = function RP$catch() {
request.Request.prototype.finally = function RP$finally() {
    markPromiseInUse(this);
    return this._rp_promise.finally.apply(this._rp_promise);
};