Skip to content

Commit

Permalink
Fix typo in journey of a task doc (dask#3838)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbourbeau authored May 29, 2020
1 parent 9db7368 commit 2d94142
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/journey.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ A user computes the addition of two variables already on the cluster, then pulls
.. code-block:: python
client = Client('host:port')
x = e.submit(...)
y = e.submit(...)
x = client.submit(...)
y = client.submit(...)
z = client.submit(add, x, y) # we follow z
Expand Down

0 comments on commit 2d94142

Please sign in to comment.