diff options
| author | Timo Graham <timograham@gmail.com> | 2011-04-24 23:47:36 +0000 |
|---|---|---|
| committer | Timo Graham <timograham@gmail.com> | 2011-04-24 23:47:36 +0000 |
| commit | 44dbac6482223d28509f4d8002d8e7bc9138ca1f (patch) | |
| tree | 46f282bd5dce4aeb6b3ab64cf77f322b873394cd | |
| parent | f53fe1e79eef77837c07670286a5157074f6fcf9 (diff) | |
[1.3.X] Fixed #15853 - typo in m2m_changed signal documentation; thanks elbarto.
Backport of r16098 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@16099 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -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 3ce519616b..e83142e797 100644 --- a/docs/ref/signals.txt +++ b/docs/ref/signals.txt @@ -223,17 +223,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 |
