From 3c0b2b80edbe744f45b59fa29219db4997d2a108 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Sat, 26 Aug 2017 10:20:01 +0200 Subject: [PATCH] Fixed #28532 -- Fixed typo in PostgreSQL field docs Thanks Andreas Poisel for the report. --- docs/ref/contrib/postgres/fields.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/contrib/postgres/fields.txt b/docs/ref/contrib/postgres/fields.txt index 5b666c428f3..3d0cca951dd 100644 --- a/docs/ref/contrib/postgres/fields.txt +++ b/docs/ref/contrib/postgres/fields.txt @@ -658,7 +658,7 @@ excluded; that is, ``[)``. .. class:: DateTimeRangeField(**options) Stores a range of timestamps. Based on a - :class:`~django.db.models.DateTimeField`. Represented by a ``tztsrange`` in + :class:`~django.db.models.DateTimeField`. Represented by a ``tstzrange`` in the database and a :class:`~psycopg2:psycopg2.extras.DateTimeTZRange` in Python.