diff --git a/typo3/sysext/form/Documentation/I/Concepts/FrontendRendering/Index.rst b/typo3/sysext/form/Documentation/I/Concepts/FrontendRendering/Index.rst
index 289806b4336540d3cab2929855d2c1b60555831b..774de8ecf8f20f4e183a7759cef693a1b9967b5f 100644
--- a/typo3/sysext/form/Documentation/I/Concepts/FrontendRendering/Index.rst
+++ b/typo3/sysext/form/Documentation/I/Concepts/FrontendRendering/Index.rst
@@ -805,37 +805,33 @@ to the field and adds a page URL as translation argument:
 .. code-block:: typoscript
 
    plugin.tx_form {
-       settings {
-           formDefinitionOverrides {
-               <form-id> {
-                   renderables {
-                       0 {
-                           # Page
-                           renderables {
-                               fieldWithTranslationArguments {
-                                   renderingOptions {
-                                       translation {
-                                           arguments {
-                                               label {
-                                                   0 = TEXT
-                                                   0.typolink {
-                                                       # Terms and conditions page, could be
-                                                       # set also via TypoScript constants
-                                                       parameter = 42
-                                                       returnLast = url
-                                                    }
-                                                 }
-                                              }
-                                           }
-                                        }
-                                     }
-                                  }
-                               }
-                            }
-                         }
-                      }
-                   }
-                }
+      settings {
+         formDefinitionOverrides {
+            <form-id> {
+               renderables {
+                  0 {
+                     # Page
+                     renderables {
+                        fieldWithTranslationArguments {
+                           renderingOptions {
+                              translation {
+                                 arguments {
+                                    label {
+                                       0 = TEXT
+                                       0.typolink {
+                                          # Terms and conditions page, could be
+                                          # set also via TypoScript constants
+                                          parameter = 42
+                                          returnLast = url
+                                       }
+                                    }
+                                 }
+                              }
+                           }
+                        }
+                     }
+                  }
+               }
             }
          }
       }