diff options
author | 2022-08-19 10:06:53 +0200 | |
---|---|---|
committer | 2022-08-19 16:06:53 +0800 | |
commit | 26150429231770bbeec819458140b46efaf3f503 (patch) | |
tree | c5928c30ce81ad36752b3289a88100805ebe03ae /examples/docs/src | |
parent | 77b068086d923e99eb693d1c57b7d6cd906a1e8a (diff) | |
download | astro-26150429231770bbeec819458140b46efaf3f503.tar.gz astro-26150429231770bbeec819458140b46efaf3f503.tar.zst astro-26150429231770bbeec819458140b46efaf3f503.zip |
Fix typo in the docs example (#4382)
Diffstat (limited to 'examples/docs/src')
-rw-r--r-- | examples/docs/src/components/LeftSidebar/LeftSidebar.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/docs/src/components/LeftSidebar/LeftSidebar.astro b/examples/docs/src/components/LeftSidebar/LeftSidebar.astro index 8b0c57f0a..5ffa73c12 100644 --- a/examples/docs/src/components/LeftSidebar/LeftSidebar.astro +++ b/examples/docs/src/components/LeftSidebar/LeftSidebar.astro @@ -9,8 +9,8 @@ const sidebarSections = SIDEBAR[langCode].reduce((col, item, i) => { // If the first item is not a section header, create a new container section. if (i === 0) { if (!item.header) { - const pesudoSection = { text: '' }; - col.push({ ...pesudoSection, children: [] }); + const pseudoSection = { text: '' }; + col.push({ ...pseudoSection, children: [] }); } } if (item.header) { |