diff options
| author | Thomas Chaumeny <thomas.chaumeny@polyconseil.fr> | 2014-09-26 14:31:50 +0200 |
|---|---|---|
| committer | Loic Bistuer <loic.bistuer@gmail.com> | 2014-09-29 00:01:38 +0700 |
| commit | b2aad7b836bfde012756cca69291c14d2fdbd334 (patch) | |
| tree | 53c93f9804075ed347d6d83718d37f7dc2a06340 /docs/ref | |
| parent | caf5cd7ba7c9d73194e394a26c81f1a677d54a6c (diff) | |
Replaced set([foo, ...]) by {foo, ...} literals. Refs PR 3282.
Thanks Collin Anderson for the review.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/signals.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/signals.txt b/docs/ref/signals.txt index 175d6599af..d1f5f3c78f 100644 --- a/docs/ref/signals.txt +++ b/docs/ref/signals.txt @@ -310,7 +310,7 @@ Argument Value ``model`` ``Topping`` (the class of the objects added to the ``Pizza``) -``pk_set`` ``set([t.id])`` (since only ``Topping t`` was added to the relation) +``pk_set`` ``{t.id}`` (since only ``Topping t`` was added to the relation) ``using`` ``"default"`` (since the default router sends writes here) ============== ============================================================ @@ -337,7 +337,7 @@ Argument Value ``model`` ``Pizza`` (the class of the objects removed from the ``Topping``) -``pk_set`` ``set([p.id])`` (since only ``Pizza p`` was removed from the +``pk_set`` ``{p.id}`` (since only ``Pizza p`` was removed from the relation) ``using`` ``"default"`` (since the default router sends writes here) |
