Skip to content

Commit

Permalink
Merge pull request #986 from ipiz/master
Browse files Browse the repository at this point in the history
Fixed example: `job.log({[1,2,3,5,8]});` to `job.log([1,2,3,5,8]);`
  • Loading branch information
behrad authored Dec 23, 2016
2 parents d5f0b65 + a05dd20 commit 2691399
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 @@ -174,7 +174,7 @@ or anything else (uses [util.inspect()](https://nodejs.org/api/util.html#util_ut

```js
job.log({key: 'some key', value: 10});
job.log({[1,2,3,5,8]});
job.log([1,2,3,5,8]);
job.log(10.1);
```

Expand Down

0 comments on commit 2691399

Please # to comment.