diff --git a/docs/releases/1.0-porting-guide.txt b/docs/releases/1.0-porting-guide.txt
index 95b9efe..e12b34e 100644
a
|
b
|
Signals
|
373 | 373 | ``sender=None`` |
374 | 374 | |
375 | 375 | * Make any custom signals you've declared into instances of |
376 | | :class:`django.dispatch.Signal`` instead of anonymous objects. |
| 376 | :class:`django.dispatch.Signal` instead of anonymous objects. |
377 | 377 | |
378 | 378 | Here's quick summary of the code changes you'll need to make: |
379 | 379 | |
… |
… |
Accessing ``HTTPResponse`` headers
|
626 | 626 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
627 | 627 | |
628 | 628 | ``django.http.HttpResponse.headers`` has been renamed to ``_headers`` and |
629 | | :class:`HttpResponse`` now supports containment checking directly. So use |
630 | | ``if header in response:`` instead of ``if header in response.headers:``. |
| 629 | :class:`~django.http.HttpResponse` now supports containment checking directly. |
| 630 | So use ``if header in response:`` instead of ``if header in response.headers:``. |
631 | 631 | |
632 | 632 | Generic relations |
633 | 633 | ----------------- |
… |
… |
Management commands
|
661 | 661 | Running management commands from your code |
662 | 662 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
663 | 663 | |
664 | | :mod:`django.core.management`` has been greatly refactored. |
| 664 | :mod:`django.core.management` has been greatly refactored. |
665 | 665 | |
666 | 666 | Calls to management services in your code now need to use |
667 | 667 | ``call_command``. For example, if you have some test code that calls flush and |