diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
index a5d66f8..35e41ec 100644
a
|
b
|
information on the available attributes and methods, see the
|
572 | 572 | :class:`~django.core.files.File` class reference and the :doc:`/topics/files` |
573 | 573 | topic guide. |
574 | 574 | |
| 575 | .. note:: |
| 576 | The file is saved as part of saving the model in the database, so the actual |
| 577 | file name used on disk cannot be relied on until after the model has been |
| 578 | saved. |
| 579 | |
575 | 580 | The uploaded file's relative URL can be obtained using the |
576 | 581 | :attr:`~django.db.models.fields.FileField.url` attribute. Internally, |
577 | 582 | this calls the :meth:`~django.core.files.storage.Storage.url` method of the |
diff --git a/docs/topics/files.txt b/docs/topics/files.txt
index e9d46f1..9ab8d5c 100644
a
|
b
|
the details of the attached photo::
|
45 | 45 | This object -- ``car.photo`` in the example -- is a ``File`` object, which means |
46 | 46 | it has all the methods and attributes described below. |
47 | 47 | |
| 48 | .. note:: |
| 49 | The file is saved as part of saving the model in the database, so the actual |
| 50 | file name used on disk cannot be relied on until after the model has been |
| 51 | saved. |
| 52 | |
| 53 | |
48 | 54 | The ``File`` object |
49 | 55 | =================== |
50 | 56 | |