From 762787a4fe4ebf90af7647cf2fdddcc17829faaa Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Mon, 5 Oct 2015 11:32:53 -0400 Subject: [PATCH] DOC: Tweaks to pipeline language. --- zipline/pipeline/pipeline.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/zipline/pipeline/pipeline.py b/zipline/pipeline/pipeline.py index 664fa314..5c28eb9d 100644 --- a/zipline/pipeline/pipeline.py +++ b/zipline/pipeline/pipeline.py @@ -14,11 +14,11 @@ class Pipeline(object): `Term` instances, and 'screen', a Filter representing criteria for including an asset in the results of a Pipeline. - To compute a pipeline in the context of a TradingAlgorithm, users should - call `attach_pipeline` in their `initialize` function to register that the - pipeline computed for each trading day. The outputs of the pipeline on a - given day can be accessed by calling `pipeline_outputs` in `handle_data` or - `before_trading_start`. + To compute a pipeline in the context of a TradingAlgorithm, users must call + `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`. Parameters ----------