Skip to content

Commit 6e2db0a

Browse files
committed
use "Form component" instead of "form framework"
1 parent 96d6cf7 commit 6e2db0a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: book/forms.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1858,7 +1858,7 @@ an array.
18581858

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

18631863
Adding Validation
18641864
~~~~~~~~~~~~~~~~~

Diff for: book/translation.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ the framework:
547547
Translating Constraint Messages
548548
-------------------------------
549549

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

Diff for: cookbook/form/data_transformers.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ when creating your form. Later, you'll learn how you could create a custom
162162

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

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

0 commit comments

Comments
 (0)