From fc630c7528b92562f311cecf9f1aacefc4a96fe9 Mon Sep 17 00:00:00 2001 From: Chris Sedlmayr Date: Thu, 9 Jul 2015 09:00:17 +0100 Subject: [PATCH] Fixes small typo in data transformers cookbook --- cookbook/form/data_transformers.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/form/data_transformers.rst b/cookbook/form/data_transformers.rst index 8b9ce662f1f..0cdd485f6bb 100644 --- a/cookbook/form/data_transformers.rst +++ b/cookbook/form/data_transformers.rst @@ -89,7 +89,7 @@ class:: // ... } -The ``CallbackTransformer`` takes to callback functions as arguments. The first transforms +The ``CallbackTransformer`` takes two callback functions as arguments. The first transforms the original value into a format that'll be used to render the field. The second does the reverse: it transforms the submitted value back into the format you'll use in your code.