Skip to content

Commit

Permalink
Fix 'getAll' missing arrow in README
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkKhramko committed Jan 7, 2021
1 parent 9fbc680 commit 0a75b5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const ModelController = () => {
});
};

const getAll = (req, res) {
const getAll = (req, res) => {
Model
.findAll()
.then((models) => {
Expand Down

0 comments on commit 0a75b5d

Please sign in to comment.