mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-06-30 08:49:28 +02:00
docs: typos in docstrings corrected
This commit is contained in:
parent
24ef100197
commit
b937ef04bb
4 changed files with 13 additions and 13 deletions
|
@ -21,7 +21,7 @@ class Fit_result(Sequence):
|
|||
----------
|
||||
fit_parameters : list
|
||||
results for the individual fit parameters,
|
||||
also accesible via indices.
|
||||
also accessible via indices.
|
||||
"""
|
||||
|
||||
def __init__(self):
|
||||
|
@ -427,7 +427,7 @@ def _standard_fit(x, y, func, silent=False, **kwargs):
|
|||
raise Exception('x and y input have to have the same length')
|
||||
|
||||
if len(x.shape) > 2:
|
||||
raise Exception('Unkown format for x values')
|
||||
raise Exception('Unknown format for x values')
|
||||
|
||||
if not callable(func):
|
||||
raise TypeError('func has to be a function.')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue