| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Django
Revision: 8963
Author: ubernostrum
Date: 04 Sep 2008 03:29:27
Diff at Trac: http://code.djangoproject.com/changeset/8963
Changes:Fixed #8867: Corrected a couple typos in the signals documentation
Files:| ... | ...@@ -141,7 +141,7 @@ | |
| 141 | 141 | The model class. |
| 142 | 142 | |
| 143 | 143 | ``instance`` |
| 144 | The actual instance being saved. | |
| 144 | The actual instance being deleted. | |
| 145 | 145 | |
| 146 | 146 | post_delete |
| 147 | 147 | ----------- |
| ... | ...@@ -158,10 +158,10 @@ | |
| 158 | 158 | The model class. |
| 159 | 159 | |
| 160 | 160 | ``instance`` |
| 161 | The actual instance being saved. | |
| 161 | The actual instance being deleted. | |
| 162 | 162 | |
| 163 | 163 | Note that the object will no longer be in the database, so be very |
| 164 | careful what you do with this instance | |
| 164 | careful what you do with this instance. | |
| 165 | 165 | |
| 166 | 166 | class_prepared |
| 167 | 167 | -------------- |