diff options
| author | Alexey Rogachev <arogachev90@gmail.com> | 2017-02-20 12:35:48 +0600 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-02-20 08:45:01 -0500 |
| commit | 447c6802f0a19d62026f2a8c84a479377ce80b20 (patch) | |
| tree | 8dd2826d5bf003430f1cbe6b78615f3e68f0980d | |
| parent | 87775b64cdda97567a33c7bad65ad42853048525 (diff) | |
[1.11.x] Fixed typo in DurationField's docstring.
Backport of c743af82cf56a915bf5d5d53a063892394cb75cf from master
| -rw-r--r-- | django/db/models/fields/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/db/models/fields/__init__.py b/django/db/models/fields/__init__.py index f695b33e35..3aabb4497d 100644 --- a/django/db/models/fields/__init__.py +++ b/django/db/models/fields/__init__.py @@ -1616,8 +1616,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 = { |
