From 71395d4ea1fefcb8c465c79fd0d7de9bcacd28ec Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Thu, 17 Dec 2015 13:17:43 -0500 Subject: [PATCH] DOC: Fix typo in CustomFactor docstring. --- zipline/pipeline/factors/factor.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zipline/pipeline/factors/factor.py b/zipline/pipeline/factors/factor.py index 2e6463b3..b75192a3 100644 --- a/zipline/pipeline/factors/factor.py +++ b/zipline/pipeline/factors/factor.py @@ -617,9 +617,9 @@ class CustomFactor(PositiveWindowLengthMixin, CustomTermMixin, Factor): argument is passed to the CustomFactor constructor, we look for a class-level attribute named `inputs`. window_length : int, optional - Number of rows of rows to pass for each input. If this - argument is not passed to the CustomFactor constructor, we look for a - class-level attribute named `window_length`. + Number of rows to pass for each input. If this argument is not passed + to the CustomFactor constructor, we look for a class-level attribute + named `window_length`. Notes -----