diff --git a/core/lib/Drupal/Core/Render/theme.api.php b/core/lib/Drupal/Core/Render/theme.api.php index 322761eee868..0dd75732249f 100644 --- a/core/lib/Drupal/Core/Render/theme.api.php +++ b/core/lib/Drupal/Core/Render/theme.api.php @@ -254,13 +254,13 @@ * form array, which specifies the form elements for an HTML form; see the * @link form_api Form generation topic @endlink for more information on forms. * - * Render arrays (at each level in the hierarchy) will usually have one of the - * following three properties defined: + * Render arrays (at any level of the hierarchy) will usually have one of the + * following properties defined: * - #type: Specifies that the array contains data and options for a particular - * type of "render element" (examples: 'form', for an HTML form; 'textfield', - * 'submit', and other HTML form element types; 'table', for a table with - * rows, columns, and headers). See @ref elements below for more on render - * element types. + * type of "render element" (for example, 'form', for an HTML form; + * 'textfield', 'submit', for HTML form element types; 'table', for a table + * with rows, columns, and headers). See @ref elements below for more on + * render element types. * - #theme: Specifies that the array contains data to be themed by a particular * theme hook. Modules define theme hooks by implementing hook_theme(), which * specifies the input "variables" used to provide data and options; if a @@ -277,30 +277,29 @@ * can customize the markup. Note that the value is passed through * \Drupal\Component\Utility\Xss::filterAdmin(), which strips known XSS * vectors while allowing a permissive list of HTML tags that are not XSS - * vectors. (I.e,