1
0
mirror of https://github.com/django/django.git synced 2025-03-06 15:32:33 +00:00

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

View File

@ -50,7 +50,7 @@ Lookup registration can also be done using a decorator pattern::
from django.db.models.fields import Field from django.db.models.fields import Field
@Field.registerLookup @Field.register_lookup
class NotEqualLookup(Lookup): class NotEqualLookup(Lookup):
# ... # ...