From f109dbbd1d23f3b92c856184a47ad6b9ce0569bd Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Tue, 6 Oct 2015 05:09:59 -0400 Subject: [PATCH] DOC: Use double backticks for API methods in pipeline docs. --- zipline/pipeline/pipeline.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zipline/pipeline/pipeline.py b/zipline/pipeline/pipeline.py index 72f731af..5461871e 100644 --- a/zipline/pipeline/pipeline.py +++ b/zipline/pipeline/pipeline.py @@ -15,10 +15,10 @@ class Pipeline(object): including an asset in the results of a Pipeline. To compute a pipeline in the context of a TradingAlgorithm, users must call - `attach_pipeline` in their `initialize` function to register that the + ``attach_pipeline`` in their ``initialize`` function to register that the pipeline should be computed each trading day. The outputs of a pipeline on - a given day can be accessed by calling `pipeline_outputs` in `handle_data` - or `before_trading_start`. + a given day can be accessed by calling ``pipeline_outputs`` in + ``handle_data`` or ``before_trading_start``. Parameters ----------