From caf9a09efacf12efbb801f250d96dd54c24c3a39 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Thu, 13 Apr 2023 12:47:18 -0400 Subject: [PATCH] fix typos --- docs/resources/contributing.md | 2 +- src/components/details/details.test.ts | 2 +- src/components/select/select.test.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/resources/contributing.md b/docs/resources/contributing.md index a352d894..46ae689f 100644 --- a/docs/resources/contributing.md +++ b/docs/resources/contributing.md @@ -369,7 +369,7 @@ This will render the icons instantly whereas the default library will fetch them What to test for a given component: - Start with a simple test that checks that the default version of the component still renders. -- Add at least one accessibility test (The accessability check only covers the parts of the DOM which are currently visible and rendered. Depending on the component, more than one accessability test is required to cover all scenarios.): +- Add at least one accessibility test (The accessibility check only covers the parts of the DOM which are currently visible and rendered. Depending on the component, more than one accessibility test is required to cover all scenarios.): ```ts const myComponent = await fixture(html`SomeContent`); diff --git a/src/components/details/details.test.ts b/src/components/details/details.test.ts index b4a11388..b7d6774f 100644 --- a/src/components/details/details.test.ts +++ b/src/components/details/details.test.ts @@ -6,7 +6,7 @@ import type SlHideEvent from '../../events/sl-hide'; import type SlShowEvent from '../../events/sl-show'; describe('', () => { - describe('accessability', () => { + describe('accessibility', () => { it('should be accessible when closed', async () => { const details = await fixture(html` Test text `); diff --git a/src/components/select/select.test.ts b/src/components/select/select.test.ts index bcaefeb0..c8aebbd3 100644 --- a/src/components/select/select.test.ts +++ b/src/components/select/select.test.ts @@ -8,7 +8,7 @@ import type SlOption from '../option/option'; import type SlSelect from './select'; describe('', () => { - describe('accessability', () => { + describe('accessibility', () => { it('should pass accessibility tests when closed', async () => { const select = await fixture(html`