1
0
mirror of https://github.com/django/django.git synced 2025-03-26 01:00:46 +00:00

Fix typo.

This commit is contained in:
Piet Delport 2012-07-25 01:17:27 +02:00
parent 487b92a13c
commit f1128e5474

View File

@ -111,7 +111,7 @@ outputs a single ``CREATE INDEX`` statement. However, if the database type
for the field is either ``varchar`` or ``text`` (e.g., used by ``CharField``,
``FileField``, and ``TextField``), then Django will create
an additional index that uses an appropriate `PostgreSQL operator class`_
for the column. The extra index is necessary to correctly perfrom
for the column. The extra index is necessary to correctly perform
lookups that use the ``LIKE`` operator in their SQL, as is done with the
``contains`` and ``startswith`` lookup types.