diff --git a/docs/howto/custom-model-fields.txt b/docs/howto/custom-model-fields.txt
index 5a5bef9..af652de 100644
a
|
b
|
descriptive text in a ``description`` class attribute of your custom field. In
|
314 | 314 | the above example, the description displayed by the ``admindocs`` |
315 | 315 | application for a ``HandField`` will be 'A hand of cards (bridge style)'. |
316 | 316 | |
| 317 | In the :mod:`django.contrib.admindocs` display, the field description is |
| 318 | interpolated with ``field.__dict__`` which allows the description to |
| 319 | incorporate arguments of the field. For example, the description for |
| 320 | :class:`~django.db.models.CharField` is:: |
| 321 | |
| 322 | description = _("String (up to %(max_length)s)") |
| 323 | |
317 | 324 | Useful methods |
318 | 325 | -------------- |
319 | 326 | |