Fix typos

Signed-off-by: Dimitris Apostolou <dimitris.apostolou@icloud.com>
This commit is contained in:
Dimitris Apostolou
2022-03-13 14:09:19 +02:00
parent b17dd0584d
commit aedd4daa66
54 changed files with 62 additions and 62 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;