From 56cffe74138d27346fec5ca40ff2301de6741281 Mon Sep 17 00:00:00 2001 From: Adam Gibson Date: Thu, 30 Apr 2015 22:01:11 +0800 Subject: [PATCH] Correct typo in mathutils.ceil docstring. --- boltons/mathutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boltons/mathutils.py b/boltons/mathutils.py index b2aa944..0158822 100644 --- a/boltons/mathutils.py +++ b/boltons/mathutils.py @@ -12,7 +12,7 @@ def ceil(x, options=None): Args: x (int or float): Number to be tested. - options (iterable): Optional terable of arbitrary numbers + options (iterable): Optional iterable of arbitrary numbers (ints or floats). >>> VALID_CABLE_CSA = [1.5, 2.5, 4, 6, 10, 25, 35, 50]