summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2012-07-25 13:07:10 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2012-07-25 13:07:10 -0700
commit5ee8c3ef0c7e311bfc49ce145126b46a9ebea456 (patch)
tree6da9d3450d8a8c679ca7c03851fd223fc72ba1e1 /docs
parent98c7ad444c064bd9540eed60609869d770489d07 (diff)
parentf1128e54746ca211254f4f6b0a37809812957b3e (diff)
Merge pull request #230 from pjdelport/cleanup
Cleanup
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/databases.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
index 1f4d09f6cb..74e6b48f07 100644
--- a/docs/ref/databases.txt
+++ b/docs/ref/databases.txt
@@ -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.