diff --git a/docs/howto/custom-model-fields.txt b/docs/howto/custom-model-fields.txt
index 169f511..31ee331 100644
a
|
b
|
For example::
|
261 | 261 | This ensures that the :meth:`to_python` method, documented below, will always be |
262 | 262 | called when the attribute is initialized. |
263 | 263 | |
| 264 | .. note:: |
| 265 | Since :meth:`to_python` method is being called every time the attribute is |
| 266 | assigned a value you need to make sure that it is always initialized with |
| 267 | the correct datatype or that you handle any potential exceptions. This is |
| 268 | most important when working with :ref:`ModelForms <topics-forms-modelforms>`. |
| 269 | To make sure that is so you need to implement the :meth:`formfield` method |
| 270 | to return a field class whose `to_python` returns the correct datatype. |
| 271 | |
264 | 272 | |
265 | 273 | Documenting your Custom Field |
266 | 274 | ----------------------------- |