diff --git a/packages/mdc-base/README.md b/packages/mdc-base/README.md index 2a00d39850f..ceda825b43e 100644 --- a/packages/mdc-base/README.md +++ b/packages/mdc-base/README.md @@ -56,7 +56,7 @@ mdc-base exposes two classes: `MDCComponent` (the default export) which all comp ### MDCFoundation -MDCFoundation provides the basic mechanisms for implementing a foundation classes. Subclasses are expected to: +MDCFoundation provides the basic mechanisms for implementing foundation classes. Subclasses are expected to: - Provide implementations of the proper static getters where necessary. - Provide `init()` and `destroy()` lifecycle methods diff --git a/packages/mdc-checkbox/README.md b/packages/mdc-checkbox/README.md index f2569c2cf5a..cea1d90af6c 100644 --- a/packages/mdc-checkbox/README.md +++ b/packages/mdc-checkbox/README.md @@ -210,7 +210,7 @@ The adapter for checkboxes must provide the following functions, with correct si | `deregisterChangeHandler(handler: EventListener) => void` | Deregisters an event handler that was previously passed to `registerChangeHandler`. | | `getNativeControl() => HTMLInputElement?` | Returns the native checkbox control, if available. Note that if this control is not available, the methods that rely on it will exit gracefully.| | `forceLayout() => void` | Force-trigger a layout on the root element. This is needed to restart animations correctly. If you find that you do not need to do this, you can simply make it a no-op. | -| `isAttachedToDOM() => boolean` | Returns true if the component is currently attached to the DOM, false otherwise.` | +| `isAttachedToDOM() => boolean` | Returns true if the component is currently attached to the DOM, false otherwise. | #### MDCCheckboxFoundation API diff --git a/packages/mdc-list/README.md b/packages/mdc-list/README.md index f7b5182e26c..1c57da2fc04 100644 --- a/packages/mdc-list/README.md +++ b/packages/mdc-list/README.md @@ -18,7 +18,7 @@ path: /catalog/lists/ MDC List provides styles which implement [Material Design Lists](https://material.io/guidelines/components/lists.html) - "A single continuous column of tessellated subdivisions of equal width." Both single-line and two-line lists are supported (with three-line lists [coming soon](https://github.com/material-components/material-components-web/issues/31)). MDC -Lists are design to be accessible and RTL aware. +Lists are designed to be accessible and RTL aware. ## Design & API Documentation @@ -41,7 +41,7 @@ npm install --save @material/list ### Basic Lists -A basic lists consists simply of the list itself, and list items taking up one line. +A basic list consists simply of the list itself, and list items taking up one line. ```html