summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorJames Bennett <ubernostrum@gmail.com>2008-09-04 07:29:27 +0000
committerJames Bennett <ubernostrum@gmail.com>2008-09-04 07:29:27 +0000
commit36b120c23aac4d08f8b17c19be166de359115c78 (patch)
treed18fcc68c7c19a6223609739ede92d8ef530b902 /docs/ref
parentca422fd89b9a5a8ef23a334f4f9f53d259da2aaa (diff)
Fixed #8867: Corrected a couple typos in the signals documentation
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8963 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/signals.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/signals.txt b/docs/ref/signals.txt
index a442f2cbc7..930041bb08 100644
--- a/docs/ref/signals.txt
+++ b/docs/ref/signals.txt
@@ -141,7 +141,7 @@ Arguments sent with this signal:
The model class.
``instance``
- The actual instance being saved.
+ The actual instance being deleted.
post_delete
-----------
@@ -158,10 +158,10 @@ Arguments sent with this signal:
The model class.
``instance``
- The actual instance being saved.
+ The actual instance being deleted.
Note that the object will no longer be in the database, so be very
- careful what you do with this instance
+ careful what you do with this instance.
class_prepared
--------------