From 11feeff1ecc2973f77962acdc5da1ad21915fc7a Mon Sep 17 00:00:00 2001 From: Mac Date: Tue, 11 Apr 2017 15:28:21 -0700 Subject: [PATCH] fix typos across docs --- CODING_STANDARDS.md | 2 +- src/lib/list/list.md | 2 +- src/lib/snack-bar/snack-bar.md | 2 +- src/lib/toolbar/toolbar.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CODING_STANDARDS.md b/CODING_STANDARDS.md index 54ce525cc4ec..3fe410dede70 100644 --- a/CODING_STANDARDS.md +++ b/CODING_STANDARDS.md @@ -143,7 +143,7 @@ All public APIs must have user-facing comments. These are extracted and shown in on [material.angular.io](https://material.angular.io). Private and internal APIs should have JsDoc when they are not obvious. Ultimately it is the purview -of the code reviwer as to what is "obvious", but the rule of thumb is that *most* classes, +of the code reviewer as to what is "obvious", but the rule of thumb is that *most* classes, properties, and methods should have a JsDoc description. Properties should have a concise description of what the property means: diff --git a/src/lib/list/list.md b/src/lib/list/list.md index 270fa571677b..4833887ce1d0 100644 --- a/src/lib/list/list.md +++ b/src/lib/list/list.md @@ -44,7 +44,7 @@ element in an ``. ### Multi-line lists For lists that require multiple lines per item, annotate each line with an `md-line` attribute. -Whichever heading tag is appropriate for your DOM hierarchy should be used (not necesarily `

` +Whichever heading tag is appropriate for your DOM hierarchy should be used (not necessarily `

` as shown in the example). ```html diff --git a/src/lib/snack-bar/snack-bar.md b/src/lib/snack-bar/snack-bar.md index da2aedf02d88..b42281068f09 100644 --- a/src/lib/snack-bar/snack-bar.md +++ b/src/lib/snack-bar/snack-bar.md @@ -16,7 +16,7 @@ let snackBarRef = snackbar.openFromComponent(MessageArchivedComponent); ``` In either case, an `MdSnackBarRef` is returned. This can be used to dismiss the snack-bar or to -recieve notification of when the snack-bar is dismissed. For simple messages with an action, the +receive notification of when the snack-bar is dismissed. For simple messages with an action, the `MdSnackBarRef` exposes an observable for when the action is triggered. ```ts diff --git a/src/lib/toolbar/toolbar.md b/src/lib/toolbar/toolbar.md index edc8eb786616..eb7189923d0f 100644 --- a/src/lib/toolbar/toolbar.md +++ b/src/lib/toolbar/toolbar.md @@ -4,7 +4,7 @@ ### Multiple rows Toolbars can have multiple rows using `` elements. Any content outside of an -`` element are automatically placed inside of one at the begining of the toolbar. +`` element are automatically placed inside of one at the beginning of the toolbar. Each toolbar row is a `display: flex` container. ```html