Skip to content

Commit

Permalink
Typo fix for error message when can't ensure uniqueness of user email…
Browse files Browse the repository at this point in the history
… addresses (parse-community#2360)
  • Loading branch information
AndrewLane authored and Rafael Santos committed Mar 15, 2017
1 parent be8a8cf commit 89aa521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ParseServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class ParseServer {
let emailUniqueness = userClassPromise
.then(() => databaseController.adapter.ensureUniqueness('_User', requiredUserFields, ['email']))
.catch(error => {
logger.warn('Unabled to ensure uniqueness for user email addresses: ', error);
logger.warn('Unable to ensure uniqueness for user email addresses: ', error);
return Promise.reject(error);
})

Expand Down

0 comments on commit 89aa521

Please sign in to comment.