Skip to content

Commit

Permalink
fix str spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
freewil committed Aug 28, 2018
1 parent 7ba0068 commit 5046cef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/error/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ var MongooseError = require('./');
function VersionError(doc, currentVersion, modifiedPaths) {
var modifiedPathsStr = modifiedPaths.join(', ');
MongooseError.call(this, 'No matching document found for id "' + doc._id +
'" version ' + currentVersion + 'modifiedPaths "' + modifiedPathsStr + '"');
'" version ' + currentVersion + ' modifiedPaths "' + modifiedPathsStr + '"');
this.name = 'VersionError';
this.version = currentVersion;
this.modifiedPaths = modifiedPaths;
Expand Down

0 comments on commit 5046cef

Please sign in to comment.