Skip to content

Commit ad17d9f

Browse files
committed
fix(cleanup): Update docs texts
1 parent 85411d5 commit ad17d9f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

packages/module/patternfly-docs/content/extensions/component-groups/examples/ErrorState/ErrorState.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ propComponents: ['ErrorState']
1515

1616
import { ErrorState } from "@patternfly/react-component-groups";
1717

18-
## Components Usage
18+
## Component usage
1919

2020
This component reuses the EmptyState component. Also most of its props is accepted.
2121

22-
### ErrorState Component
22+
### ErrorState component
2323

2424
```js file="./ErrorStateExample.tsx"
2525

packages/module/patternfly-docs/content/extensions/component-groups/examples/NotAuthorized/NotAuthorized.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ propComponents: ['NotAuthorized']
88

99
import { NotAuthorized } from "@patternfly/react-component-groups";
1010

11-
## Components Usage
11+
## Component usage
1212

13-
### NotAuthorized Component
13+
### NotAuthorized component
1414

1515
```js file="./NotAuthorizedExample.tsx"
1616

packages/module/src/ErrorState/ErrorState.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export interface ErrorStateProps extends Omit<EmptyStateProps, 'children'> {
2424
errorTitle?: string;
2525
/** A description of the error, if no description is provided then it will be set to the defaulErrorDescription. */
2626
errorDescription?: React.ReactNode;
27-
/** A default description of the error used if no description is provided. */
27+
/** A default description of the error used if no errorDescription is provided. */
2828
defaulErrorDescription?: React.ReactNode;
2929
}
3030

packages/module/src/HorizontalNav/HorizontalNav.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { render, screen, fireEvent } from '@testing-library/react';
21
import React from 'react';
2+
import { render, screen, fireEvent } from '@testing-library/react';
33
import { HorizontalNav, TabProps } from './HorizontalNav';
44

55
// Sample content components for tabs

0 commit comments

Comments
 (0)