diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
index 4797e8b..1d8386a 100644
a
|
b
|
the field. Note: This method will close the file if it happens to be open when
|
668 | 668 | The optional ``save`` argument controls whether or not the instance is saved |
669 | 669 | after the file has been deleted. Defaults to ``True``. |
670 | 670 | |
| 671 | Note that when a model is deleted, the :class:`~django.db.models.FileField`'s |
| 672 | :func:`~django.db.models.FileField.delete` method won't be called. If you need |
| 673 | to cleanup orphaned files, you'll need to handle it yourself (for instance, |
| 674 | with a custom management command that can be run manually or scheduled to run |
| 675 | periodically via e.g. cron). |
| 676 | |
671 | 677 | ``FilePathField`` |
672 | 678 | ----------------- |
673 | 679 | |