Commit ceff1980 authored by Ken Bolton's avatar Ken Bolton Committed by Tim Graham
Browse files

[1.5.x] Fixed typo in docs/ref/signals.txt

Backport of 6fcb7ba8 from master
parent 20295f27
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -284,7 +284,7 @@ If we connected a handler like this::

and then did something like this::

    >>> p = Pizza.object.create(...)
    >>> p = Pizza.objects.create(...)
    >>> t = Topping.objects.create(...)
    >>> p.toppings.add(t)