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:29 -0400
commit219fc1f726d72d96f9db6bdfb6a2979398cfd98e (patch)
tree333d8429a85aa7e571d58a0ec793a2b8f59bf69e /docs
parent669b8e3d8f99b2b9857597770e00442f5d2d618f (diff)
[1.9.x] Fixed #26595 -- Removed unnecessary save() in one_to_one.txt example.
Backport of 6ae617dc57149216d264d3596cdb10a72dad1bca from master
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 43bb2fcc62..0380975cda 100644
--- a/docs/topics/db/examples/one_to_one.txt
+++ b/docs/topics/db/examples/one_to_one.txt
@@ -147,7 +147,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>