From f3fc4d0638fb902daed2776a7282904ffe87f241 Mon Sep 17 00:00:00 2001 From: Adam Date: Thu, 30 Apr 2015 21:55:29 +0800 Subject: [PATCH] Update function names in mathutils.rst. --- docs/mathutils.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/mathutils.rst b/docs/mathutils.rst index 0649fe9..e174b22 100644 --- a/docs/mathutils.rst +++ b/docs/mathutils.rst @@ -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.