typo mistake

a typo mistake
This commit is contained in:
Jacty
2016-12-01 10:34:33 +08:00
committed by GitHub
parent e5b32087c9
commit 312ec74699
+1 -1
View File
@@ -847,7 +847,7 @@ console.log('next');
function getUsername(userId) {
return database.users.get({id: userId})
.then(function(user) {
return uesr.name;
return user.name;
});
}
```