diff --git a/docs/ref/models/instances.txt b/docs/ref/models/instances.txt
index f989ff1..6a3c360 100644
a
|
b
|
object. Django uses ``unicode(obj)`` (or the related function, :meth:`str(obj)
|
434 | 434 | <Model.__str__>`) in a number of places. Most notably, to display an object in |
435 | 435 | the Django admin site and as the value inserted into a template when it |
436 | 436 | displays an object. Thus, you should always return a nice, human-readable |
437 | | representation of the model from the ``__unicode__()`` method. |
| 437 | representation of the model from the ``__unicode__()`` method. Because this |
| 438 | method may be called from Django internals outside of code you write, you |
| 439 | should be aware of any unintended side effects, including queries resulting |
| 440 | from fetching information on related models. |
438 | 441 | |
439 | 442 | For example:: |
440 | 443 | |