Fixed typo in DurationField's docstring.

This commit is contained in:
Alexey Rogachev 2017-02-20 12:35:48 +06:00 committed by Tim Graham
parent 75f0070a54
commit c743af82cf
1 changed files with 2 additions and 2 deletions

View File

@ -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 = {