0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-06 22:40:26 -05:00

s/self/this/ in error message

This commit is contained in:
Alex Kocharin 2014-11-25 04:24:18 +03:00
parent ecc5e9bfaf
commit b84bb568cd

View file

@ -69,7 +69,7 @@ function Auth(config) {
adduser: function(user, password, cb) {
if (config.users && config.users[user])
return cb( Error[403]('self user already exists') )
return cb( Error[403]('this user already exists') )
return cb()
},