Commit 508be27d authored by Christopher Grebs's avatar Christopher Grebs Committed by Tim Graham
Browse files

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

parent 7fd5629d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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):
        # ...