1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-28 21:32:20 +00:00

Merge pull request #289 from jacty/patch-3

typo mistake
This commit is contained in:
Ruan YiFeng 2016-12-01 15:55:32 +08:00 committed by GitHub
commit b6a6518108

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;
});
}
```