Skip to content

Commit ed61e7a

Browse files
committed
[PR feedback] wording goodly
1 parent 5d42711 commit ed61e7a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/provider/component_defaults/component_defaults.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export type EuiComponentDefaults = {
4040
/**
4141
* Provide a global configuration for EuiTable's `responsiveBreakpoint` prop. Defaults to `'s'`.
4242
*
43-
* Defaults will be inherited all `EuiBasicTable`s and `EuiInMemoryTable`s.
43+
* Defaults will be inherited by all `EuiBasicTable`s and `EuiInMemoryTable`s.
4444
*/
4545
EuiTable?: Pick<EuiTableProps, 'responsiveBreakpoint'>;
4646
};

src/components/table/table.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ describe('EuiTable', () => {
7676
expect(container.firstElementChild!.className).toContain('-mobile');
7777
});
7878

79-
it('allows never rendering responsive tables if set to `false`', () => {
79+
it('never renders responsive tables if set to `false`', () => {
8080
window.innerWidth = 320;
8181
const { container } = render(<EuiTable responsiveBreakpoint={false} />);
8282

0 commit comments

Comments
 (0)