summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorshiblystory <shiblydu60@yahoo.com>2016-05-07 16:53:03 +0600
committerTim Graham <timograham@gmail.com>2016-05-07 06:53:03 -0400
commit6ae617dc57149216d264d3596cdb10a72dad1bca (patch)
tree1069839db51e8eab48588a0c2827a957a50543e4 /docs
parentb26fedacef16cc42a4fdd891af06ca925d4bb418 (diff)
Fixed #26595 -- Removed unnecessary save() in one_to_one.txt example.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/db/examples/one_to_one.txt1
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/topics/db/examples/one_to_one.txt b/docs/topics/db/examples/one_to_one.txt
index dd92c63519..72d918861e 100644
--- a/docs/topics/db/examples/one_to_one.txt
+++ b/docs/topics/db/examples/one_to_one.txt
@@ -140,7 +140,6 @@ This of course works in reverse::
Add a Waiter to the Restaurant::
>>> w = r.waiter_set.create(name='Joe')
- >>> w.save()
>>> w
<Waiter: Joe the waiter at Demon Dogs the restaurant>