@@ -45,9 +45,12 @@ def _default_call_out_of_place(op, x, **kwargs):
4545
4646 Parameters
4747 ----------
48- x : `domain` element
49- An object in the operator domain. The operator is applied
50- to it.
48+ op : `Operator`
49+ Operator to call
50+ x : ``op.domain`` element
51+ Point in which to call the operator.
52+ kwargs:
53+ Optional arguments to the operator.
5154
5255 Returns
5356 -------
@@ -65,17 +68,15 @@ def _default_call_in_place(op, x, out, **kwargs):
6568
6669 Parameters
6770 ----------
68- x : `domain` element
69- An object in the operator domain. The operator is applied
70- to it.
71-
72- out : `range` element
71+ op : `Operator`
72+ Operator to call
73+ x : ``op.domain`` element
74+ Point in which to call the operator.
75+ out : ``op. range` ` element
7376 An object in the operator range. The result of an operator
74- evaluation.
75-
76- Returns
77- -------
78- None
77+ evaluation is written here.
78+ kwargs:
79+ Optional arguments to the operator.
7980 """
8081 out .assign (op .range .element (op ._call_out_of_place (x , ** kwargs )))
8182
@@ -168,9 +169,9 @@ def _dispatch_call_args(cls=None, bound_call=None, unbound_call=None,
168169 cls : `class`, optional
169170 The ``_call()`` method of this class is checked. If omitted,
170171 provide ``unbound_call`` instead to check directly.
171- bound_call: callable, optional
172+ bound_call : callable, optional
172173 Check this bound method instead of ``cls``
173- unbound_call: callable, optional
174+ unbound_call : callable, optional
174175 Check this unbound function instead of ``cls``
175176 attr : string, optional
176177 Check this attribute instead of ``_call``, e.g. ``__call__``
@@ -2021,8 +2022,8 @@ def __init__(self, operator, vector):
20212022
20222023 Parameters
20232024 ----------
2024- op : `Operator`
2025- The domain of ``op `` must be a ``vector.space``.
2025+ operator : `Operator`
2026+ The domain of ``operator `` must be a ``vector.space``.
20262027 vector : ``op.domain`` element
20272028 The fixed element to multiply with.
20282029 """
0 commit comments