diff --git a/packages/infolists/docs/04-image-entry.md b/packages/infolists/docs/04-image-entry.md
index 635487aa24..08a73e4b69 100644
--- a/packages/infolists/docs/04-image-entry.md
+++ b/packages/infolists/docs/04-image-entry.md
@@ -32,7 +32,7 @@ ImageEntry::make('header_image')
->alt('Article header image')
```
-As well as allowing a static value, the `alt()` method also accepts a function to dynamically calculate it. You can inject various utilities into the function as parameters, including the `$state` of the current image, which is useful when the entry renders multiple images.
+As well as allowing a static value, the `alt()` method also accepts a function to dynamically calculate it. You can inject various utilities into the function as parameters, including the `$state` of the current image, which is useful when the entry renders multiple images.
If you do not set any alt text, the image is rendered with an empty `alt` attribute, which marks it as decorative for assistive technology.
diff --git a/packages/tables/docs/02-columns/04-image.md b/packages/tables/docs/02-columns/04-image.md
index 2914465083..5e659a75b3 100644
--- a/packages/tables/docs/02-columns/04-image.md
+++ b/packages/tables/docs/02-columns/04-image.md
@@ -32,7 +32,7 @@ ImageColumn::make('avatar')
->alt('User avatar')
```
-As well as allowing a static value, the `alt()` method also accepts a function to dynamically calculate it. You can inject various utilities into the function as parameters, including the `$state` of the current image.
+As well as allowing a static value, the `alt()` method also accepts a function to dynamically calculate it. You can inject various utilities into the function as parameters, including the `$state` of the current image.
If you do not set any alt text, the image is rendered with an empty `alt` attribute, which marks it as decorative for assistive technology.