@@ -568,11 +568,11 @@ def set_uncertainty(
568568 uncertainties = self .__class__ .uncertainties .fparse (self , {name : value })
569569 self ._uncertainties .update (uncertainties )
570570
571- def combine_uncertaintes (
571+ def combine_uncertainties (
572572 self ,
573573 combine : UncertaintyFlag | str | dict [str , Sequence [str ]] = UncertaintyFlag .ALL ,
574574 ) -> Number :
575- """ combine_uncertaintes (combine_uncs=ALL)
575+ """ combine_uncertainties (combine_uncs=ALL)
576576 Returns a copy of this number with certain uncertainties combined. *combine* can be a
577577 dictionary of keys mapping to strings denoting uncertainties that should be combined with
578578 keys refering to new names of the combined uncertainties.
@@ -654,7 +654,7 @@ def str(
654654 of NumPy objects, *kwargs* are passed to `numpy.array2string
655655 <https://docs.scipy.org/doc/numpy/reference/generated/numpy.array2string.html>`_.
656656
657- When *combine_uncs* is set, uncertainties are reduced via :py:meth:`combine_uncertaintes `.
657+ When *combine_uncs* is set, uncertainties are reduced via :py:meth:`combine_uncertainties `.
658658 When *unit* is set, it is appended to the end of the string. When *scientific* is *True*,
659659 all values are represented by their scientific notation. When *scientific* is *False* and
660660 *si* is *True*, the appropriate SI prefix is used.
@@ -701,7 +701,7 @@ def str(
701701
702702 # when uncertainties should be combined, create a new instance and forward to its formatting
703703 if combine_uncs :
704- return self .combine_uncertaintes (combine = combine_uncs ).str (
704+ return self .combine_uncertainties (combine = combine_uncs ).str (
705705 format = format ,
706706 unit = unit ,
707707 scientific = scientific ,
0 commit comments