| -attributes. : +\[\] for specific \ | -attributes.
``` php
echo $this->Html->tableCells([
diff --git a/docs/en/views/helpers/paginator.md b/docs/en/views/helpers/paginator.md
index 0a07f82f36..a4728e2876 100644
--- a/docs/en/views/helpers/paginator.md
+++ b/docs/en/views/helpers/paginator.md
@@ -225,11 +225,11 @@ Supported options are:
- `last` Whether you want last links generated, set to an integer to define
the number of 'last' links to generate. Defaults to `false`. Follows the same
logic as the `first` option. There is a
- `~PaginatorHelper::last()` method to be used separately as well if
+ `PaginatorHelper::last()` method to be used separately as well if
you wish.
While this method allows a lot of customization for its output. It is
-also ok to just call the method without any parameters. :
+also ok to just call the method without any parameters.
``` php
echo $this->Paginator->numbers();
@@ -343,7 +343,7 @@ echo $this->Paginator->counter('range');
`method` Cake\\View\\Helper\\PaginatorHelper::**generateUrl**(array $options = [], ?string $model = null, array $url = [], array $urlOptions = []): string
By default returns a full pagination URL string for use in non-standard contexts
-(i.e. JavaScript). :
+(i.e. JavaScript).
``` php
// Generates a URL similar to: /articles?sort=title&page=2
diff --git a/docs/en/views/helpers/text.md b/docs/en/views/helpers/text.md
index 050f2fc564..1ff595e0e4 100644
--- a/docs/en/views/helpers/text.md
+++ b/docs/en/views/helpers/text.md
@@ -14,7 +14,7 @@ truncating long stretches of text.
Adds links to the well-formed email addresses in \$text, according
to any options defined in `$options` (see
-`HtmlHelper::link()`). :
+`HtmlHelper::link()`).
``` php
$myText = 'For more information regarding our world-famous ' .
@@ -67,7 +67,7 @@ Further options:
`method` Cake\\View\\Helper\\TextHelper::**autoParagraph**(string $text): string
Adds proper \ around text where double-line returns are found, and \ |