From c743af82cf56a915bf5d5d53a063892394cb75cf Mon Sep 17 00:00:00 2001 From: Alexey Rogachev Date: Mon, 20 Feb 2017 12:35:48 +0600 Subject: [PATCH] Fixed typo in DurationField's docstring. --- django/db/models/fields/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django/db/models/fields/__init__.py b/django/db/models/fields/__init__.py index c3da2d4049..fdfca33b72 100644 --- a/django/db/models/fields/__init__.py +++ b/django/db/models/fields/__init__.py @@ -1571,8 +1571,8 @@ class DecimalField(Field): class DurationField(Field): """Stores timedelta objects. - Uses interval on postgres, INVERAL DAY TO SECOND on Oracle, and bigint of - microseconds on other databases. + Uses interval on PostgreSQL, INTERVAL DAY TO SECOND on Oracle, and bigint + of microseconds on other databases. """ empty_strings_allowed = False default_error_messages = {