Skip to content

Commit 07bc4db

Browse files
committed
use "Form component" instead of "form framework"
1 parent bd5ca26 commit 07bc4db

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

book/forms.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1867,7 +1867,7 @@ an array.
18671867

18681868
Be advised, however, that in most cases using the ``getData()`` method is
18691869
a better choice, since it returns the data (usually an object) after
1870-
it's been transformed by the form framework.
1870+
it's been transformed by the Form component.
18711871

18721872
Adding Validation
18731873
~~~~~~~~~~~~~~~~~

book/translation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ the framework:
573573
Translating Constraint Messages
574574
-------------------------------
575575

576-
If you're using validation constraints with the form framework, then translating
576+
If you're using validation constraints with the Form component, then translating
577577
the error messages is easy: simply create a translation resource for the
578578
``validators`` :ref:`domain <using-message-domains>`.
579579

cookbook/form/data_transformers.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ when creating your form. Later, you'll learn how you could create a custom
169169

170170
Cool, you're done! Your user will be able to enter an issue number into the
171171
text field and it will be transformed back into an Issue object. This means
172-
that, after a successful submission, the Form framework will pass a real Issue
173-
object to ``Task::setIssue()`` instead of the issue number.
172+
that, after a successful submission, the Form component will pass a real
173+
``Issue`` object to ``Task::setIssue()`` instead of the issue number.
174174

175175
If the issue isn't found, a form error will be created for that field and
176176
its error message can be controlled with the ``invalid_message`` field option.

0 commit comments

Comments
 (0)