Doc fixed an error in model concepts

This commit is contained in:
Patrik Nyman 2019-06-13 21:33:39 +02:00 committed by GitHub
parent 4ec50ca3fc
commit c550d2f606
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -294,7 +294,7 @@ module.exports = {
.populate('author');
// Send the list of users.
ctx.body = users;
ctx.body = articles;
}
}
```