From ae35cd3dcbaa06b11ab74ba1f6b47b7407e48f6a Mon Sep 17 00:00:00 2001 From: Sergey Fedoseev Date: Mon, 12 Nov 2018 20:20:35 +0500 Subject: [PATCH] [2.1.x] Corrected docs regarding RegisterLookupMixin subclasses. Backport of d48662122c7f539efca3949f4d9fea82416fbb1a from master. --- docs/ref/models/lookups.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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