Skip to content

Commit

Permalink
Preferring use of all for readability.
Browse files Browse the repository at this point in the history
  • Loading branch information
wbyoung committed May 11, 2015
1 parent 33c20d5 commit 027cfe9
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 @@ -40,7 +40,7 @@ Sometimes you'll still want to create queries that are not executed immediately
built across multiple asynchronous events:

```js
var articles = Article.objects.pin();
var articles = Article.objects.all().pin();
var promise = Promise.resolve(); // empty promise to start things off

if (req.session.userId) {
Expand Down

0 comments on commit 027cfe9

Please sign in to comment.