From 04ae6c7feb3017315b8e6d6775840b039a5b1ec8 Mon Sep 17 00:00:00 2001 From: Mahmoud Hashemi Date: Sat, 21 May 2016 00:31:21 -0700 Subject: [PATCH] fixing daterange's xrange link --- boltons/timeutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boltons/timeutils.py b/boltons/timeutils.py index 0806797..3c1a807 100644 --- a/boltons/timeutils.py +++ b/boltons/timeutils.py @@ -278,7 +278,7 @@ def strpdate(string, format): def daterange(start, stop, step=1, inclusive=False): - """In the spirit of :func:`range` and :class:`xrange`, the `daterange` + """In the spirit of :func:`range` and :func:`xrange`, the `daterange` generator that yields a sequence of :class:`~datetime.date` objects, starting at *start*, incrementing by *step*, until *stop* is reached.