diff --git a/docs/topics/db/queries.txt b/docs/topics/db/queries.txt
index a1cb5c7..39ef2b3 100644
a
|
b
|
Saving ``ForeignKey`` and ``ManyToManyField`` fields
|
102 | 102 | Updating a :class:`~django.db.models.ForeignKey` field works exactly the same |
103 | 103 | way as saving a normal field -- simply assign an object of the right type to |
104 | 104 | the field in question. This example updates the ``blog`` attribute of an |
105 | | ``Entry`` instance ``entry``:: |
| 105 | ``Entry`` instance ``entry``, assuming appropriate instances of ``Entry`` and |
| 106 | ``Blog`` are already saved to the database (so we can retrieve them below):: |
106 | 107 | |
107 | 108 | >>> from blog.models import Entry |
108 | 109 | >>> entry = Entry.objects.get(pk=1) |