Update function names in mathutils.rst.

This commit is contained in:
Adam 2015-04-30 21:55:29 +08:00
parent fb5b2621f3
commit f3fc4d0638
1 changed files with 3 additions and 3 deletions

View File

@ -6,11 +6,11 @@
Alternative Ceiling/Floor Functions
-----------------------------------
.. autofunction:: boltons.mathutils.ceil_from_iter
.. autofunction:: boltons.mathutils.ceil
.. autofunction:: boltons.mathutils.floor_from_iter
.. autofunction:: boltons.mathutils.floor
Note: :func:`ceil_from_iter` and :func:`floor_from_iter` functions are based on `this example`_ using from the
Note: :func:`ceil` and :func:`floor` functions are based on `this example`_ using from the
:mod:`bisect` module in the standard library. Refer to this `StackOverflow Answer`_ for further information regarding
the performance impact of this approach.