diff --git a/typo3/sysext/fluid/Classes/ViewHelpers/FormViewHelper.php b/typo3/sysext/fluid/Classes/ViewHelpers/FormViewHelper.php
index 38494cd77cec5529185eaec662cf615119872fb8..ad6ae53814da441b9433e1694224bb7d0ffb9dae 100644
--- a/typo3/sysext/fluid/Classes/ViewHelpers/FormViewHelper.php
+++ b/typo3/sysext/fluid/Classes/ViewHelpers/FormViewHelper.php
@@ -50,11 +50,11 @@ use TYPO3\CMS\Fluid\ViewHelpers\Form\CheckboxViewHelper;
  *
  *    <f:form action="..." name="customer" object="{customer}">
  *       <f:form.hidden property="id" />
- *       <f:form.textbox property="name" />
+ *       <f:form.textarea property="name" />
  *    </f:form>
  *
  * This automatically inserts the value of ``{customer.name}`` inside the
- * textbox and adjusts the name of the textbox accordingly.
+ * textarea and adjusts the name of the textarea accordingly.
  */
 class FormViewHelper extends AbstractFormViewHelper
 {