Update docs.
authorScott Gasch <[email protected]>
Fri, 18 Nov 2022 16:38:40 +0000 (08:38 -0800)
committerScott Gasch <[email protected]>
Fri, 18 Nov 2022 16:38:40 +0000 (08:38 -0800)
src/pyutils/math_utils.py

index 2a56b634d063cc966a6569bd3dd9b4bb8700d076..8ac6b10a6f9c258d382328959e58496b89cb327e 100644 (file)
@@ -17,8 +17,8 @@ class NumericPopulation(object):
     """This object *store* a numerical population in a way that enables relatively
     fast addition of new numbers (:math:`O(2log_2 n)`) and instant access to the
     median value in the population (:math:`O(1)`).  It also provides other population
-    summary statistics such as the :meth:`mode`, :meth:`get_percentile` and
-    :meth:`stdev`.
+    summary statistics such as the :meth:`get_mode`, :meth:`get_percentile` and
+    :meth:`get_stdev`.
 
     .. note::