From 92ace495e1580f84c247c29ddabc06c2b9aa3431 Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Mon, 16 Jun 2014 14:04:17 -0700 Subject: [PATCH] Fix doc which should state fetch() usage The doc should say single results can be fetched with fetch() and not using the fetch_all() method which is used for a different purpose. Change-Id: I57f23f5f3f72336d91aedcb413d4f789a2844b06 --- doc/source/inputs_and_outputs.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/inputs_and_outputs.rst b/doc/source/inputs_and_outputs.rst index d89d6ab8e..cc1fd2d08 100644 --- a/doc/source/inputs_and_outputs.rst +++ b/doc/source/inputs_and_outputs.rst @@ -145,7 +145,7 @@ Outputs As you can see from examples above, the run method returns all flow outputs in a ``dict``. This same data can be fetched via :py:meth:`~taskflow.storage.Storage.fetch_all` method of the storage. You can -also get single results using :py:meth:`~taskflow.storage.Storage.fetch_all`. +also get single results using :py:meth:`~taskflow.storage.Storage.fetch`. For example: .. doctest::