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] improve English, move moment.js last due to bundle size #1816

Merged
merged 1 commit into from
May 25, 2020
Merged
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
10 changes: 5 additions & 5 deletions docs/pages/getting-started/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import PageMeta from '../../_shared/PageMeta';

## Installation

Available as an [npm package](https://www.npmjs.com/package/@material-ui/pickers)
Material UI Pickers is available as an [npm package](https://www.npmjs.com/package/@material-ui/pickers):

```
npm i @material-ui/pickers
Expand All @@ -17,8 +17,8 @@ yarn add @material-ui/pickers

#### Peer Library

@material-ui/pickers was designed to use the date management library of your choice.
We are providing interfaces for [moment](https://momentjs.com/), [date-fns 2](https://date-fns.org/), [luxon](https://moment.github.io/luxon/) and [dayjs](https://github.com/iamkun/dayjs).
`@material-ui/pickers` was designed to use the date management library of your choice.
We are providing interfaces for [date-fns 2](https://date-fns.org/), [luxon](https://moment.github.io/luxon/), [dayjs](https://github.com/iamkun/dayjs) and [moment](https://momentjs.com/).

```
npm i date-fns
Expand Down Expand Up @@ -53,5 +53,5 @@ function App() {
ReactDOM.render(<App />, document.querySelector('#app'));
```

Also it is possible to pass [date adapter directly to picker](/guides/date-adapter-passing) and avoid using context,
but please use this possibility widely.
It is also possible to pass the [date adapter directly to the picker](/guides/date-adapter-passing) and avoid using context,
but please use this possibility wisely.