Skip to content

Commit d7d5f8e

Browse files
committed
Update: docstrings
1 parent 283a3a8 commit d7d5f8e

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

uncertaintyx/fit/randomsampling.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ def __init__(
3939
Creates a new bootstrap instance.
4040
4141
Concrete implementations of :class:`Fitting` supplied as
42-
argument may accept keyword-only parameters for propagation
43-
of standard uncertainties::
42+
argument may accept keyword-only parameters for standard
43+
uncertainties:
4444
4545
fit(f, x, y, *, u: np.ndarray, **kwargs)
4646
fit(f, x, y, *, ux: np.ndarray, **kwargs)
@@ -167,7 +167,7 @@ def __init__(
167167
168168
Concrete implementations of :class:`Fitting` supplied as
169169
argument must accept `ux` and `uy` keyword-only parameters
170-
for uncertainty propagation::
170+
for standard uncertainties:
171171
172172
fit(f, x, y, *, ux: np.ndarray, uy: np.ndarray, **kwargs)
173173

uncertaintyx/tyx.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -500,9 +500,8 @@ def fit(self, f: M, x: np.ndarray, y: np.ndarray, **kwargs) -> Result:
500500
Fits the parameters of a model function to :math:`M`
501501
samples :math:`(x_i, y_i)` of data.
502502
503-
Concrete implementations of :class:`Fitting` supplied as
504-
argument may accept keyword-only parameters for propagation
505-
of standard uncertainties::
503+
Concrete implementations of :class:`Fitting` may accept
504+
keyword-only parameters for standard uncertainties:
506505
507506
fit(f, x, y, *, u: np.ndarray, **kwargs)
508507
fit(f, x, y, *, ux: np.ndarray, **kwargs)

0 commit comments

Comments
 (0)