Skip to content

Commit

Permalink
Fix typo in the docs example (#4382)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-uden authored Aug 19, 2022
1 parent 77b0680 commit 2615042
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/docs/src/components/LeftSidebar/LeftSidebar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 2615042

Please sign in to comment.