Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs-infra] Correctly ban the use of e.g. #44513

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/data/material/components/selects/selects.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ If you use the ListSubheader directly, **no additional code is required**.
## Accessibility

To properly label your `Select` input you need an extra element with an `id` that contains a label.
That `id` needs to match the `labelId` of the `Select` e.g.
That `id` needs to match the `labelId` of the `Select`, for example:

```jsx
<InputLabel id="label">Age</InputLabel>
Expand Down
Binary file modified docs/mui-vale.zip
Binary file not shown.
7 changes: 4 additions & 3 deletions docs/mui-vale/styles/MUI/CorrectRererenceCased.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ ignorecase: false
swap:
eg: e.g.
eg\.: e.g.
'e\.g ': 'e.g.'
'ie\.': i.e.
'i\.e ': 'i.e.'
e\.g: e.g.
ie: i.e.
ie\.: i.e.
i\.e: i.e.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { TypeScriptProject } from './createTypeScriptProject';
export interface ParsedProp {
/**
* If `true`, some signatures do not contain this property.
* e.g: `id` in `{ id: number, value: string } | { value: string }`
* For example: `id` in `{ id: number, value: string } | { value: string }`
*/
onlyUsedInSomeSignatures: boolean;
signatures: { symbol: ts.Symbol; componentType: ts.Type }[];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { TypeScriptProject } from './createTypeScriptProject';
export interface ParsedProp {
/**
* If `true`, some signatures do not contain this property.
* e.g: `id` in `{ id: number, value: string } | { value: string }`
* For example: `id` in `{ id: number, value: string } | { value: string }`
*/
onlyUsedInSomeSignatures: boolean;
signatures: { symbol: ts.Symbol; componentType: ts.Type }[];
Expand Down