Merge pull request #10147 from rex4539/typos

Fix typos
This commit is contained in:
Fredrik Adelöw
2022-03-15 11:01:46 +01:00
committed by GitHub
54 changed files with 99 additions and 61 deletions
@@ -45,7 +45,7 @@ describe('Entity Docs Card Grid', () => {
jest.resetAllMocks();
});
it('should render all entities passed ot it', async () => {
it('should render all entities passed to it', async () => {
const { findByText, findAllByRole } = render(
wrapInTestApp(
<DocsCardGrid
+1 -1
View File
@@ -9,7 +9,7 @@ Transformers are functions that optionally takes in parameters from the Reader.t
```typescript
export const updateH1Text = (): Transformer => {
return dom => {
// Change the first occurance of H1 to say "TechDocs!"
// Change the first occurrence of H1 to say "TechDocs!"
dom.querySelector('h1')?.innerHTML = 'TechDocs!';
return dom;