Skip to content

Commit 031ee97

Browse files
maecapozzimarkerikson
authored andcommitted
Improve grammar in README (reduxjs#2969)
1 parent c6665d9 commit 031ee97

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ The **[#redux channel](https://discord.gg/0ZcbPKXt5bZ6au5t)** of the **[Reactifl
6868

6969
Redux is a valuable tool for organizing your state, but you should also consider whether it's appropriate for your situation. Don't use Redux just because someone said you should - take some time to understand the potential benefits and tradeoffs of using it.
7070

71-
Here's some suggestions on when it makes sense to use Redux:
71+
Here are some suggestions on when it makes sense to use Redux:
7272
* You have reasonable amounts of data changing over time
7373
* You need a single source of truth for your state
7474
* You find that keeping all your state in a top-level component is no longer sufficient
@@ -83,12 +83,12 @@ Yes, these guidelines are subjective and vague, but this is for good reason. The
8383
8484
## Developer Experience
8585

86-
Dan Abramov (author of Redux) wrote Redux while working on his React Europe talk called [“Hot Reloading with Time Travel”](https://www.youtube.com/watch?v=xsSnOQynTHs). His goal was to create a state management library with minimal API but completely predictable behavior, so it is possible to implement logging, hot reloading, time travel, universal apps, record and replay, without any buy-in from the developer.
86+
Dan Abramov (author of Redux) wrote Redux while working on his React Europe talk called [“Hot Reloading with Time Travel”](https://www.youtube.com/watch?v=xsSnOQynTHs). His goal was to create a state management library with a minimal API but completely predictable behavior. Redux makes it possible to implement logging, hot reloading, time travel, universal apps, record and replay, without any buy-in from the developer.
8787

8888
## Influences
8989

9090
Redux evolves the ideas of [Flux](http://facebook.github.io/flux/), but avoids its complexity by taking cues from [Elm](https://github.com/evancz/elm-architecture-tutorial/).
91-
Whether you have used them or not, Redux only takes a few minutes to get started with.
91+
Even if you haven't used Flux or Elm, Redux only takes a few minutes to get started with.
9292

9393
## Installation
9494

@@ -102,7 +102,7 @@ This assumes you are using [npm](https://www.npmjs.com/) as your package manager
102102

103103
If you're not, you can [access these files on unpkg](https://unpkg.com/redux/), download them, or point your package manager to them.
104104

105-
Most commonly people consume Redux as a collection of [CommonJS](http://webpack.github.io/docs/commonjs.html) modules. These modules are what you get when you import `redux` in a [Webpack](https://webpack.js.org/), [Browserify](http://browserify.org/), or a Node environment. If you like to live on the edge and use [Rollup](http://rollupjs.org), we support that as well.
105+
Most commonly, people consume Redux as a collection of [CommonJS](http://webpack.github.io/docs/commonjs.html) modules. These modules are what you get when you import `redux` in a [Webpack](https://webpack.js.org/), [Browserify](http://browserify.org/), or a Node environment. If you like to live on the edge and use [Rollup](http://rollupjs.org), we support that as well.
106106

107107
If you don't use a module bundler, it's also fine. The `redux` npm package includes precompiled production and development [UMD](https://github.com/umdjs/umd) builds in the [`dist` folder](https://unpkg.com/redux/dist/). They can be used directly without a bundler and are thus compatible with many popular JavaScript module loaders and environments. For example, you can drop a UMD build as a [`<script>` tag](https://unpkg.com/redux/dist/redux.js) on the page, or [tell Bower to install it](https://github.com/reactjs/redux/pull/1181#issuecomment-167361975). The UMD builds make Redux available as a `window.Redux` global variable.
108108

0 commit comments

Comments
 (0)