0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-17 23:11:29 -05:00

Fixes typo. (#11968)

* Fix typo

* Create nine-chairs-decide.md

---------

Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com>
This commit is contained in:
Nikola Hristov 2024-09-11 18:44:30 +03:00 committed by GitHub
parent 1c64ae304d
commit 86ad1fd223
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
"astro": patch
---
Fixes a typo in the server island JSDoc

View file

@ -2094,7 +2094,7 @@ export interface AstroUserConfig {
*
* The outer page will be rendered, either at build time (`hybrid`) or at runtime (`server`) with the island content omitted and a `<script>` tag included in its place.
*
* After the page loads in the browser, the script tag will replace itself with the the contents of the island by making a request.
* After the page loads in the browser, the script tag will replace itself with the contents of the island by making a request.
*
* Any Astro component can be given the `server: defer` attribute to delay its rendering. There is no special API and you can write `.astro` code as normal:
*