summaryrefslogtreecommitdiff
path: root/silx/math/fit/fitmanager.py
diff options
context:
space:
mode:
Diffstat (limited to 'silx/math/fit/fitmanager.py')
-rw-r--r--silx/math/fit/fitmanager.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/silx/math/fit/fitmanager.py b/silx/math/fit/fitmanager.py
index 4a12a24..f62dedb 100644
--- a/silx/math/fit/fitmanager.py
+++ b/silx/math/fit/fitmanager.py
@@ -1,7 +1,7 @@
# coding: utf-8
# /*#########################################################################
#
-# Copyright (c) 2004-2017 European Synchrotron Radiation Facility
+# Copyright (c) 2004-2018 European Synchrotron Radiation Facility
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
@@ -240,15 +240,15 @@ class FitManager(object):
If this parameter is provided, all other parameters, except for
``name``, are ignored.
:type theory: :class:`silx.math.fit.fittheory.FitTheory`
- :param function function: Mandatory argument if ``theory`` is not provided.
+ :param callable function: Mandatory argument if ``theory`` is not provided.
See documentation for :attr:`silx.math.fit.fittheory.FitTheory.function`.
- :param list[str] parameters: Mandatory argument if ``theory`` is not provided.
+ :param List[str] parameters: Mandatory argument if ``theory`` is not provided.
See documentation for :attr:`silx.math.fit.fittheory.FitTheory.parameters`.
- :param function estimate: See documentation for
+ :param callable estimate: See documentation for
:attr:`silx.math.fit.fittheory.FitTheory.estimate`
- :param function configure: See documentation for
+ :param callable configure: See documentation for
:attr:`silx.math.fit.fittheory.FitTheory.configure`
- :param function derivative: See documentation for
+ :param callable derivative: See documentation for
:attr:`silx.math.fit.fittheory.FitTheory.derivative`
:param str description: See documentation for
:attr:`silx.math.fit.fittheory.FitTheory.description`