Browse Source

Fixed #24057 -- Fixed typo in docs/howto/custom-lookups.txt.

Christopher Grebs 10 years ago
parent
commit
508be27dbf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/howto/custom-lookups.txt

+ 1 - 1
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):
         # ...