From 32c0596207696b7c5b8fbbcdebf5c547ecf05a06 Mon Sep 17 00:00:00 2001 From: Thomas Gordon Lowrey IV Date: Tue, 25 Oct 2016 23:14:09 -0700 Subject: [PATCH] fix carbon refs --- pendulum/pendulum.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pendulum/pendulum.py b/pendulum/pendulum.py index 2dc6011b..19f6b460 100644 --- a/pendulum/pendulum.py +++ b/pendulum/pendulum.py @@ -345,7 +345,7 @@ def create(cls, year=None, month=None, day=None, hour=0, minute=0, second=0, microsecond=0, tz=UTC): """ - Create a new Carbon instance from a specific date and time. + Create a new Pendulum instance from a specific date and time. If any of year, month or day are set to None their now() values will be used. @@ -860,7 +860,7 @@ def set_test_now(cls, test_now=None): @classmethod def get_test_now(cls): """ - Get the Carbon instance (real or mock) to be returned when a "now" + Get the Pendulum instance (real or mock) to be returned when a "now" instance is created. :rtype: Pendulum or None