Use links instead of raw block quotes

We can just link to the code that is these
functions and methods instead of not, so
prefer linking.

Change-Id: I2469e314c411fcc64dcd5562637fdec80359c9b7
This commit is contained in:
Joshua Harlow
2015-03-05 08:24:44 -08:00
committed by Joshua Harlow
parent db22de960c
commit 217c635ce2

View File

@@ -134,7 +134,7 @@ def load(flow, store=None, flow_detail=None, book=None,
This function creates and prepares an engine to run the provided flow. All This function creates and prepares an engine to run the provided flow. All
that is left after this returns is to run the engine with the that is left after this returns is to run the engine with the
engines ``run()`` method. engines :py:meth:`~taskflow.engines.base.Engine.run` method.
Which engine to load is specified via the ``engine`` parameter. It Which engine to load is specified via the ``engine`` parameter. It
can be a string that names the engine type to use, or a string that can be a string that names the engine type to use, or a string that
@@ -143,7 +143,8 @@ def load(flow, store=None, flow_detail=None, book=None,
Which storage backend to use is defined by the backend parameter. It Which storage backend to use is defined by the backend parameter. It
can be backend itself, or a dictionary that is passed to can be backend itself, or a dictionary that is passed to
``taskflow.persistence.backends.fetch()`` to obtain a viable backend. :py:func:`~taskflow.persistence.backends.fetch` to obtain a
viable backend.
:param flow: flow to load :param flow: flow to load
:param store: dict -- data to put to storage to satisfy flow requirements :param store: dict -- data to put to storage to satisfy flow requirements
@@ -198,7 +199,8 @@ def run(flow, store=None, flow_detail=None, book=None,
The arguments are interpreted as for :func:`load() <load>`. The arguments are interpreted as for :func:`load() <load>`.
:returns: dictionary of all named results (see ``storage.fetch_all()``) :returns: dictionary of all named
results (see :py:meth:`~.taskflow.storage.Storage.fetch_all`)
""" """
engine = load(flow, store=store, flow_detail=flow_detail, book=book, engine = load(flow, store=store, flow_detail=flow_detail, book=book,
engine_conf=engine_conf, backend=backend, engine_conf=engine_conf, backend=backend,