summaryrefslogtreecommitdiff
path: root/examples/docs/src
diff options
context:
space:
mode:
Diffstat (limited to 'examples/docs/src')
-rw-r--r--examples/docs/src/components/LeftSidebar/LeftSidebar.astro4
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) {