Skip to content

Commit fe9204e

Browse files
M-a-cjelbourn
authored andcommitted
chore: fix typos in coding standards (#4043)
1 parent 205690f commit fe9204e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CODING_STANDARDS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ All public APIs must have user-facing comments. These are extracted and shown in
143143
on [material.angular.io](https://material.angular.io).
144144

145145
Private and internal APIs should have JsDoc when they are not obvious. Ultimately it is the purview
146-
of the code reviwer as to what is "obvious", but the rule of thumb is that *most* classes,
146+
of the code reviewer as to what is "obvious", but the rule of thumb is that *most* classes,
147147
properties, and methods should have a JsDoc description.
148148

149149
Properties should have a concise description of what the property means:

src/lib/list/list.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ element in an `<md-list-item>`.
4444

4545
### Multi-line lists
4646
For lists that require multiple lines per item, annotate each line with an `md-line` attribute.
47-
Whichever heading tag is appropriate for your DOM hierarchy should be used (not necesarily `<h3>`
47+
Whichever heading tag is appropriate for your DOM hierarchy should be used (not necessarily `<h3>`
4848
as shown in the example).
4949

5050
```html

src/lib/snack-bar/snack-bar.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ let snackBarRef = snackbar.openFromComponent(MessageArchivedComponent);
1616
```
1717

1818
In either case, an `MdSnackBarRef` is returned. This can be used to dismiss the snack-bar or to
19-
recieve notification of when the snack-bar is dismissed. For simple messages with an action, the
19+
receive notification of when the snack-bar is dismissed. For simple messages with an action, the
2020
`MdSnackBarRef` exposes an observable for when the action is triggered.
2121

2222
```ts

src/lib/toolbar/toolbar.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
### Multiple rows
66
Toolbars can have multiple rows using `<md-toolbar-row>` elements. Any content outside of an
7-
`<md-toolbar-row>` element are automatically placed inside of one at the begining of the toolbar.
7+
`<md-toolbar-row>` element are automatically placed inside of one at the beginning of the toolbar.
88
Each toolbar row is a `display: flex` container.
99

1010
```html

0 commit comments

Comments
 (0)