Skip to content

Commit 4dd0873

Browse files
TheVikashmmalerba
authored andcommitted
docs: fixed minor typos and table formatting (#18042)
1 parent 17a7bcb commit 4dd0873

File tree

4 files changed

+22
-22
lines changed

4 files changed

+22
-22
lines changed

FAQ.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ descriptions.
1515
## Are there any updates on issue _X_?
1616

1717
Any issue updates will appear on the issue. Due to the large volume of issues and feature requests
18-
recieved by the team, we aren't able to regularly comment on all open issues and PRs.
18+
received by the team, we aren't able to regularly comment on all open issues and PRs.
1919

2020
## Why hasn't PR _X_ been merged?
2121

@@ -27,7 +27,7 @@ When tests fail, however, the team has to spend time investigating before the PR
2727
Because of this, we cannot merge any PRs that would break an existing project. If a PR has extensive
2828
failures, it may be put on the backburner until the team can schedule time to debug the full extent
2929
of the issue. If a PR seems ready to merge, but has been inactive, it has very likely
30-
encountered some test failures inside Google that must be resovled first.
30+
encountered some test failures inside Google that must be resolved first.
3131

3232
## Why aren't you working on _X_?
3333

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
The Angular team builds and maintains both common UI components and tools to help you build your
77
own custom components. The team maintains several npm packages.
88

9-
| Package | Description | Docs |
10-
|---------------------------|------------------------------------------------------------------------------------|------------------|
11-
| `@angular/cdk` | Library that helps you author custom UI components with common interation patterns | [Docs][cdk-docs] |
12-
| `@angular/material` | [Material Design][] UI components for Angular applications | [Docs][mat-docs] |
13-
| `@angular/google-maps` | Angular components built on top of the [Google Maps JavaScript API][] | [Docs][map-docs] |
14-
| `@angular/youtube-player` | Angular component built on top of the [YouTube Player API][] | [Docs][ytp-docs] |
9+
| Package | Description | Docs |
10+
| ------------------------- | ----------------------------------------------------------------------------------- | ---------------- |
11+
| `@angular/cdk` | Library that helps you author custom UI components with common interaction patterns | [Docs][cdk-docs] |
12+
| `@angular/material` | [Material Design][] UI components for Angular applications | [Docs][mat-docs] |
13+
| `@angular/google-maps` | Angular components built on top of the [Google Maps JavaScript API][] | [Docs][map-docs] |
14+
| `@angular/youtube-player` | Angular component built on top of the [YouTube Player API][] | [Docs][ytp-docs] |
1515

1616

1717
#### Quick links

src/material/card/card.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ The most basic card needs only an `<mat-card>` element with some content. Howeve
88
provides a number of preset sections that you can use inside of an `<mat-card>`:
99

1010

11-
| Element | Description |
12-
|-----------------------|--------------------------------------------------------------------------|
13-
| `<mat-card-title>` | Card title |
14-
| `<mat-card-subtitle>` | Card subtitle |
15-
| `<mat-card-content>` | Primary card content. Intended for blocks of text |
16-
| `<img mat-card-image>` | Card image. Stretches the image to the container width |
17-
| `<mat-card-actions>` | Container for buttons at the bottom of the card |
18-
| `<mat-card-footer>` | Section anchored to the bottom of the card |
11+
| Element | Description |
12+
| ---------------------- | ------------------------------------------------------ |
13+
| `<mat-card-title>` | Card title |
14+
| `<mat-card-subtitle>` | Card subtitle |
15+
| `<mat-card-content>` | Primary card content. Intended for blocks of text |
16+
| `<img mat-card-image>` | Card image. Stretches the image to the container width |
17+
| `<mat-card-actions>` | Container for buttons at the bottom of the card |
18+
| `<mat-card-footer>` | Section anchored to the bottom of the card |
1919

2020
These elements primary serve as pre-styled content containers without any additional APIs.
2121
However, the `align` property on `<mat-card-actions>` can be used to position the actions at the
@@ -26,11 +26,11 @@ However, the `align` property on `<mat-card-actions>` can be used to position th
2626
In addition to the aforementioned sections, `<mat-card-header>` gives the ability to add a rich
2727
header to a card. This header can contain:
2828

29-
| Element | Description |
30-
|------------------------|-------------------------------------------------------------------------|
31-
| `<mat-card-title>` | A title within the header |
32-
| `<mat-card-subtitle>` | A subtitle within the header |
33-
| `<img mat-card-avatar>` | An image used as an avatar within the header |
29+
| Element | Description |
30+
| ----------------------- | -------------------------------------------- |
31+
| `<mat-card-title>` | A title within the header |
32+
| `<mat-card-subtitle>` | A subtitle within the header |
33+
| `<img mat-card-avatar>` | An image used as an avatar within the header |
3434

3535

3636
### Title groups

src/material/icon/icon.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ match the current theme's colors using the `color` attribute. This can be change
8686
Similar to an `<img>` element, an icon alone does not convey any useful information for a
8787
screen-reader user. The user of `<mat-icon>` must provide additional information pertaining to how
8888
the icon is used. Based on the use-cases described below, `mat-icon` is marked as
89-
`aria-hidden="true"` by default, but this can be overriden by adding `aria-hidden="false"` to the
89+
`aria-hidden="true"` by default, but this can be overridden by adding `aria-hidden="false"` to the
9090
element.
9191

9292
In thinking about accessibility, it is useful to place icon use into one of three categories:

0 commit comments

Comments
 (0)