File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ def decorator(func):
119119 if self .docstring_subs is not None and func .__doc__ :
120120 docstring = cleandoc (func .__doc__ )
121121 for key , sub in self .docstring_subs .items ():
122- docstring .replace (f"${{{ key } }}" , sub )
122+ docstring = docstring .replace (f"${{{ key } }}" , sub )
123123 func .__doc__ = docstring
124124 return func
125125
Original file line number Diff line number Diff line change @@ -122,11 +122,11 @@ def _make_sphere(shape, frac_radius=0.3):
122122
123123
124124_field_map_docs = dict (
125- base_params = r"""\
125+ base_params = r"""
126126field_map : NDArray
127127 The field map (off-resonance map) in rad/s, If complex-valued, the real part
128128 is interpreted as R2* mapping. If real-valued this is the field
129- inhomogeneities in Hz. and will be multiplied by :math:`2*j* \pi`
129+ inhomogeneities in Hz. and will be multiplied by :math:`2j \pi`
130130readout_time : NDArray
131131 The vector of time points (in seconds) at which to compute phase evolution.
132132mask : NDArray
You can’t perform that action at this time.
0 commit comments