Skip to content

Commit

Permalink
Correct "Redireect" type on line 45 in index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenwvickers committed Feb 25, 2015
1 parent 37e5d9d commit 5657c6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ util.inherits (ParameterProblemError, Error);

function RedirectReceivedError (source) {
this.name = "RedirectReceivedError";
this.message = "Redireect received (source=" + source + ")";
this.message = "Redirect received (source=" + source + ")";
this.source = source;
}
util.inherits (RedirectReceivedError, Error);
Expand Down

0 comments on commit 5657c6a

Please sign in to comment.