From 2d94142be584f9f702cbd23fdd1939d51409a235 Mon Sep 17 00:00:00 2001 From: James Bourbeau Date: Thu, 28 May 2020 22:11:06 -0500 Subject: [PATCH] Fix typo in journey of a task doc (#3838) --- docs/source/journey.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/journey.rst b/docs/source/journey.rst index dd7e60e8d4..c7e6f12719 100644 --- a/docs/source/journey.rst +++ b/docs/source/journey.rst @@ -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