summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGary Donovan <garyd203@users.noreply.github.com>2019-04-16 16:26:11 +1000
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-04-16 08:26:11 +0200
commit516d858e7a3d01443cdc4e1eb4532b9d910f5e2b (patch)
tree8832e8c770f0fb974ad0941591c394b414ba8d20 /docs
parent0cb40624828f3590ea2460e2e0cf1bd5a2b52496 (diff)
Fixed typo in docs/ref/models/instances.txt.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/models/instances.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/instances.txt b/docs/ref/models/instances.txt
index 0559b32765..3119527c3b 100644
--- a/docs/ref/models/instances.txt
+++ b/docs/ref/models/instances.txt
@@ -368,7 +368,7 @@ primary key — then that auto-incremented value will be calculated and saved as
an attribute on your object the first time you call ``save()``::
>>> b2 = Blog(name='Cheddar Talk', tagline='Thoughts on cheese.')
- >>> b2.id # Returns None, because b doesn't have an ID yet.
+ >>> b2.id # Returns None, because b2 doesn't have an ID yet.
>>> b2.save()
>>> b2.id # Returns the ID of your new object.