Resolved @paulromano comments

This commit is contained in:
Adam Nelson 2016-11-09 18:19:13 -05:00
parent ac8909fa29
commit 93597752f2
2 changed files with 10 additions and 8 deletions

View file

@ -407,7 +407,7 @@ class Combination(EqualityMixin):
Parameters
----------
functions : Iterable of Callable
Functions which are to be added together
Functions to combine according to operations
operations : Iterable of numpy.ufunc
Operations to perform between functions; note that the standard order
of operations will not be followed, but can be simulated by
@ -418,9 +418,12 @@ class Combination(EqualityMixin):
Attributes
----------
functions : Iterable of Callable
Functions which are to be added together
Functions to combine according to operations
operations : Iterable of numpy.ufunc
Operations to perform between functions
Operations to perform between functions; note that the standard order
of operations will not be followed, but can be simulated by
combinations of Combination objects. The operations parameter must have
a length one less than the number of functions.
"""