diff options
| author | Timo Graham <timograham@gmail.com> | 2011-04-24 23:47:18 +0000 |
|---|---|---|
| committer | Timo Graham <timograham@gmail.com> | 2011-04-24 23:47:18 +0000 |
| commit | f9fa9327c636b5315b5d41de03a498caed8d934a (patch) | |
| tree | e2b80d542a733fbc0e72dfbb29dac81852ca9a07 /docs | |
| parent | b2481a2cfb6969bf8968d03bb0a13408bc2af5d0 (diff) | |
Fixed #15853 - typo in m2m_changed signal documentation; thanks elbarto.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16098 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/signals.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/ref/signals.txt b/docs/ref/signals.txt index 35cd41868b..4cacdcb301 100644 --- a/docs/ref/signals.txt +++ b/docs/ref/signals.txt @@ -224,17 +224,17 @@ Arguments sent with this signal: This can be one of the following: ``"pre_add"`` - Sent *before* one or more objects are added to the relation + Sent *before* one or more objects are added to the relation. ``"post_add"`` - Sent *after* one or more objects are added to the relation + Sent *after* one or more objects are added to the relation. ``"pre_remove"`` - Sent *after* one or more objects are removed from the relation + Sent *before* one or more objects are removed from the relation. ``"post_remove"`` - Sent *after* one or more objects are removed from the relation + Sent *after* one or more objects are removed from the relation. ``"pre_clear"`` - Sent *before* the relation is cleared + Sent *before* the relation is cleared. ``"post_clear"`` - Sent *after* the relation is cleared + Sent *after* the relation is cleared. ``reverse`` Indicates which side of the relation is updated (i.e., if it is the |
