diff --git a/form/data_transformers.rst b/form/data_transformers.rst index 4204b77cf23..e91a190a30f 100644 --- a/form/data_transformers.rst +++ b/form/data_transformers.rst @@ -8,8 +8,8 @@ Data transformers are used to translate the data for a field into a format that be displayed in a form (and back on submit). They're already used internally for many field types. For example, the :doc:`DateType ` field can be rendered as a ``yyyy-MM-dd``-formatted input text box. Internally, a data transformer -converts the starting ``DateTime`` value of the field into the ``yyyy-MM-dd`` string -to render the form, and then back into a ``DateTime`` object on submit. +converts the ``DateTime`` value of the field to the ``yyyy-MM-dd`` string +to render the form, and then back to a ``DateTime`` object on submit. .. caution::