Skip to content

Commit 69eb8e2

Browse files
committed
Fix typo in docs/source/topics/embedded-models.rst
1 parent 525d960 commit 69eb8e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/topics/embedded-models.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Let's consider this example::
2626
The API is similar to that of Django's relational fields::
2727

2828
>>> Customer.objects.create(name="Bob", address=Address(city="New York", ...), ...)
29-
>>> bob = Customer.objects.get(...)
29+
>>> bob = Customer.objects.get(name="Bob")
3030
>>> bob.address
3131
<Address: Address object>
3232
>>> bob.address.city

0 commit comments

Comments
 (0)