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

This commit is contained in:
Christopher Grebs 2014-12-28 01:15:23 +01:00 committed by Tim Graham
parent 7fd5629d23
commit 508be27dbf
1 changed files with 1 additions and 1 deletions

View File

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