Skip to content

Commit

Permalink
add missing parens to README
Browse files Browse the repository at this point in the history
  • Loading branch information
jordaaash authored Apr 17, 2019
1 parent 810d327 commit de6940e
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 @@ -91,7 +91,7 @@ rsmq.createQueue({qname:"myqueue"}, function (err, resp) {
or Promise-based:

```javascript
rsmq.createQueueAsync({qname:"myqueue"}.then(function (resp) {
rsmq.createQueueAsync({qname:"myqueue"}).then(function (resp) {
if (resp===1) {
console.log("queue created")
}
Expand Down

0 comments on commit de6940e

Please sign in to comment.