Skip to content

Commit

Permalink
Merge pull request #455 from JosueMorales/fix-minor-formatting-issue-…
Browse files Browse the repository at this point in the history
…of-error-message

Remove extra whitespace
  • Loading branch information
bajtos authored Oct 8, 2018
2 parents 7831780 + bc00eb7 commit 5812e0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rest-adapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ RestAdapter.prototype._shouldHandleErrors = function() {
RestAdapter.remoteMethodNotFoundHandler = function(className) {
className = className || '(unknown)';
return function restRemoteMethodNotFound(req, res, next) {
var message = g.f('{{Shared class}} \"%s\" has no method handling %s %s',
var message = g.f('{{Shared class}} \"%s\" has no method handling %s %s',
className, req.method, req.url);
var error = new Error(message);
error.statusCode = 404;
Expand Down

0 comments on commit 5812e0d

Please # to comment.