Skip to content

Commit 3e44bde

Browse files
committed
use "Form component" instead of "form framework"
1 parent ccd3412 commit 3e44bde

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
@@ -1822,7 +1822,7 @@ an array.
18221822

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

18271827
Adding Validation
18281828
~~~~~~~~~~~~~~~~~

book/translation.rst

Lines changed: 1 addition & 1 deletion
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

cookbook/form/data_transformers.rst

Lines changed: 2 additions & 2 deletions
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)