From 508be27dbf43b5525a298ad184a9833906b6744c Mon Sep 17 00:00:00 2001 From: Christopher Grebs Date: Sun, 28 Dec 2014 01:15:23 +0100 Subject: [PATCH] Fixed #24057 -- Fixed typo in docs/howto/custom-lookups.txt. --- docs/howto/custom-lookups.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/howto/custom-lookups.txt b/docs/howto/custom-lookups.txt index 5c5621e28c..6b9545a568 100644 --- a/docs/howto/custom-lookups.txt +++ b/docs/howto/custom-lookups.txt @@ -50,7 +50,7 @@ Lookup registration can also be done using a decorator pattern:: from django.db.models.fields import Field - @Field.registerLookup + @Field.register_lookup class NotEqualLookup(Lookup): # ...