Skip to content

Commit

Permalink
Fix typo in examples/eventlet and formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
kanzure authored and ask committed Sep 24, 2012
1 parent 903a960 commit 613ccff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/eventlet/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ of the response body::
>>> urlopen.delay("http://www.google.com/").get()
9980

To open several URLs at once you can do:
To open several URLs at once you can do::

$ cd examples/eventlet
$ python
>>> from tasks import urlopen
>>> from celery import group
>>> result = gruop(urlopen.s(url)
>>> result = group(urlopen.s(url)
... for url in LIST_OF_URLS).apply_async()
>>> for incoming_result in result.iter_native():
... print(incoming_result, )
Expand Down

0 comments on commit 613ccff

Please sign in to comment.