From 36b120c23aac4d08f8b17c19be166de359115c78 Mon Sep 17 00:00:00 2001 From: James Bennett Date: Thu, 4 Sep 2008 07:29:27 +0000 Subject: [PATCH] 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 --- docs/ref/signals.txt | 6 +++--- 1 file 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 --------------