summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSergey Fedoseev <fedoseev.sergey@gmail.com>2018-11-12 20:20:35 +0500
committerTim Graham <timograham@gmail.com>2018-11-12 10:20:35 -0500
commitd48662122c7f539efca3949f4d9fea82416fbb1a (patch)
tree90c146d192aaa58aa019d56ec193d581b6154303 /docs
parentc7cc7526d5ee7d38a6ee1af03610f1aba1ea0c78 (diff)
Corrected docs regarding RegisterLookupMixin subclasses.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/models/lookups.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/lookups.txt b/docs/ref/models/lookups.txt
index 7a2f6edaa4..c0e97e9fe6 100644
--- a/docs/ref/models/lookups.txt
+++ b/docs/ref/models/lookups.txt
@@ -36,7 +36,7 @@ Registration API
Django uses :class:`~lookups.RegisterLookupMixin` to give a class the interface to
register lookups on itself. The two prominent examples are
:class:`~django.db.models.Field`, the base class of all model fields, and
-``Aggregate``, the base class of all Django aggregates.
+:class:`Transform`, the base class of all Django transforms.
.. class:: lookups.RegisterLookupMixin