diff --git a/README.md b/README.md
index 93ce030..2a422e7 100644
--- a/README.md
+++ b/README.md
@@ -38,7 +38,7 @@
- Pivoting & Aggregation
- Minimal design & easily themeable
- Fully controllable via optional props and callbacks
-- "Why I wrote React Table and the problems it has solved for Nozzle.io by Tanner Linsley
+- "Why I wrote React Table and the problems it has solved for Nozzle.io" by Tanner Linsley
## [Demos and examples](http://react-table.js.org/#/story/simple-table)
@@ -343,7 +343,7 @@ Or just define them as props
```
## Columns
-`` requires a `columns` prop, which is an array of objects containing the following properties
+`` requires a `columns` prop, which is an array of objects containing the following properties
```javascript
[{
@@ -358,7 +358,7 @@ Or just define them as props
Aggregated: JSX | String | Function // Used to render aggregated cells. Defaults to a comma separated list of values.
Pivot: JSX | String | Function | cellInfo => ( // Used to render a pivoted cell
- // By default, will utilize the the PivotValue and Expander components at run time
+ // By default, will utilize the the PivotValue and Expander components at run time
),
PivotValue: JSX | String | Function // Used to render the value inside of a Pivot cell
@@ -480,7 +480,7 @@ If your data has a field/key with a dot (`.`) you will need to supply a custom a
## Column Header Groups
-To group columns with another header column, just nest your columns in a header column. Header columns utilize the same header properties as regular columns.
+To group columns with another header column, just nest your columns in a header column. Header columns utilize the same header properties as regular columns.
```javascript
const columns = [{
Header: 'Favorites',
@@ -930,7 +930,7 @@ If you would like to help develop a suggested feature follow these steps:
- Auto-build files as you edit with `$ yarn run watch`
- Implement your changes to files in the `src/` directory
- Run the React Story locally with `$ yarn run docs`
-- View changes as you edit `docs/src`,
+- View changes as you edit `docs/src`
- Submit PR for review
#### Scripts