Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: correct spelling of "accessibility" #170

Merged
merged 1 commit into from
Dec 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"publish:alpha": "lerna publish --dist-tag alpha",
"check:ts": "turbo run ts",
"check:format": "prettier --check .",
"check:spell": "cspell --config .cspell.json \"**/*.{js,ts,tsx,md}\" --quiet",
"check:spell": "cspell --config .cspell.json \"**/*.{js,ts,tsx,md,html}\" --quiet",
"check": "yarn test && yarn check:format && yarn check:spell && yarn check:ts",
"publish:website": "yarn workspace website deploy"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/website/.posthtmlrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const expressionsOption = {
],
bestPractice: rules["Best Practice"],
seo: rules["SEO"],
accssibility: rules["Accessibility"],
accessibility: rules["Accessibility"],
style: rules["Style"],
},
},
Expand Down
6 changes: 3 additions & 3 deletions packages/website/src/components/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
projectNavs: locals.navs.project,
bestPracticeNavs: locals.navs.bestPractice,
seoNavs: locals.navs.seo,
accssibilityNavs: locals.navs.accssibility,
accessibilityNavs: locals.navs.accessibility,
styleNavs: locals.navs.style
}
</script>
Expand Down Expand Up @@ -61,9 +61,9 @@
<li>
<module
href="/components/nav-list.html"
locals='{ "id": "accesibility-nav", "list": {{accssibilityNavs}} }'>
locals='{ "id": "accessibility-nav", "list": {{accessibilityNavs}} }'>
<span class="title5">
Accesibility
Accessibility
</span>
</module>
</li>
Expand Down
Loading