Update meshuser.js

This commit is contained in:
Dave 2020-12-23 22:04:19 -06:00 committed by GitHub
parent 574afb17f0
commit fef46c06fe
1 changed files with 2 additions and 2 deletions

View File

@ -1303,7 +1303,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
break; break;
} }
default: { // This is an unknown command, return an error message default: { // This is an unknown command, return an error message
r = 'Unknown command \"' + cmd + '\", type \"help\" for list of avaialble commands.'; r = 'Unknown command \"' + cmd + '\", type \"help\" for list of available commands.';
break; break;
} }
} }
@ -5259,4 +5259,4 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
} }
return obj; return obj;
}; };