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