Skip to content

Commit

Permalink
Fix string quoting in README (agenda#771)
Browse files Browse the repository at this point in the history
Replace single quotes by backtick in string containing a placeholder.
  • Loading branch information
kamagatos authored and dandv committed Feb 23, 2019
1 parent 159496f commit fd10f15
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 @@ -793,7 +793,7 @@ agenda.on('success:send email', job => {

```js
agenda.on('fail:send email', (err, job) => {
console.log('Job failed with error: ${err.message}');
console.log(`Job failed with error: ${err.message}`);
});
```

Expand Down

0 comments on commit fd10f15

Please sign in to comment.