Skip to content

Commit 32b70a6

Browse files
flymasonpiotrwitek
authored andcommitted
Fix grammar problems in readme. (piotrwitek#89)
* Fix grammar problems in readme. * Modify .md files for grammar fixes.
1 parent 9bb2e4f commit 32b70a6

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

Diff for: README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ _"This guide is a **living compendium** documenting the most important patterns
44

55
[![Join the chat at https://gitter.im/react-redux-typescript-guide/Lobby](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/react-redux-typescript-guide/Lobby)
66

7-
> #### _Found it usefull? Want more updates?_ [**Show your support by giving a :star:**](https://github.com/piotrwitek/react-redux-typescript-patterns/stargazers)
7+
> #### _Found it useful? Want more updates?_ [**Show your support by giving a :star:**](https://github.com/piotrwitek/react-redux-typescript-patterns/stargazers)
88
99
> _[The Mighty Tutorial](https://github.com/piotrwitek/typesafe-actions#behold-the-mighty-tutorial) for completely typesafe Redux Architecture_ :book:
1010
@@ -14,7 +14,7 @@ _"This guide is a **living compendium** documenting the most important patterns
1414
1515
### Goals
1616
- Complete type safety (with [`--strict`](https://www.typescriptlang.org/docs/handbook/compiler-options.html) flag) without losing type information downstream through all the layers of our application (e.g. no type assertions or hacking with `any` type)
17-
- Make type annotations concise by eliminating redudancy in types using advanced TypeScript Language features like **Type Inference** and **Control flow analysis**
17+
- Make type annotations concise by eliminating redundancy in types using advanced TypeScript Language features like **Type Inference** and **Control flow analysis**
1818
- Reduce repetition and complexity of types with TypeScript focused [complementary libraries](#complementary-libraries)
1919

2020
### Complementary Projects
@@ -25,8 +25,8 @@ _"This guide is a **living compendium** documenting the most important patterns
2525
### Playground Project
2626
[![Codeship Status for piotrwitek/react-redux-typescript-guide](https://app.codeship.com/projects/11eb8c10-d117-0135-6c51-26e28af241d2/status?branch=master)](https://app.codeship.com/projects/262359)
2727

28-
You should check Playground Project located in the `/playground` folder. It is a source of all the code examples found in the guide. They are all tested with the most recent version of TypeScript and 3rd party type definitions (like `@types/react` or `@types/react-redux`) to ensure the examples are up-to-date and not broken with updated definitions.
29-
> Playground was created is such a way, that you can simply clone the repository locally and immediately play around on your own to learn all the examples from this guide in a real project environment without the need to create some complicated environment setup by yourself.
28+
You should check out Playground Project located in the `/playground` folder. It is a source of all the code examples found in the guide. They are all tested with the most recent version of TypeScript and 3rd party type definitions (like `@types/react` or `@types/react-redux`) to ensure the examples are up-to-date and not broken with updated definitions.
29+
> Playground was created in such a way that you can simply clone the repository locally and immediately play around on your own. It will help you to learn all the examples from this guide in a real project environment without the need to create some complicated environment setup by yourself.
3030
3131
### Contribution Guide
3232
[CONTRIBUTION.md](/CONTRIBUTION.md)
@@ -101,7 +101,7 @@ const MyComponent: React.SFC<MyComponentProps> = ...
101101
[⇧ back to top](#table-of-contents)
102102

103103
#### `React.Component<P, S>`
104-
Type representing statefull class component
104+
Type representing stateful class component
105105
```tsx
106106
class MyComponent extends React.Component<MyComponentProps, State> { ...
107107
```

Diff for: docs/markdown/1_react.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const MyComponent: React.SFC<MyComponentProps> = ...
88
[⇧ back to top](#table-of-contents)
99

1010
#### `React.Component<P, S>`
11-
Type representing statefull class component
11+
Type representing stateful class component
1212
```tsx
1313
class MyComponent extends React.Component<MyComponentProps, State> { ...
1414
```

Diff for: docs/markdown/_intro.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ _"This guide is a **living compendium** documenting the most important patterns
44

55
[![Join the chat at https://gitter.im/react-redux-typescript-guide/Lobby](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/react-redux-typescript-guide/Lobby)
66

7-
> #### _Found it usefull? Want more updates?_ [**Show your support by giving a :star:**](https://github.com/piotrwitek/react-redux-typescript-patterns/stargazers)
7+
> #### _Found it useful? Want more updates?_ [**Show your support by giving a :star:**](https://github.com/piotrwitek/react-redux-typescript-patterns/stargazers)
88
99
> _[The Mighty Tutorial](https://github.com/piotrwitek/typesafe-actions#behold-the-mighty-tutorial) for completely typesafe Redux Architecture_ :book:
1010
@@ -14,7 +14,7 @@ _"This guide is a **living compendium** documenting the most important patterns
1414
1515
### Goals
1616
- Complete type safety (with [`--strict`](https://www.typescriptlang.org/docs/handbook/compiler-options.html) flag) without losing type information downstream through all the layers of our application (e.g. no type assertions or hacking with `any` type)
17-
- Make type annotations concise by eliminating redudancy in types using advanced TypeScript Language features like **Type Inference** and **Control flow analysis**
17+
- Make type annotations concise by eliminating redundancy in types using advanced TypeScript Language features like **Type Inference** and **Control flow analysis**
1818
- Reduce repetition and complexity of types with TypeScript focused [complementary libraries](#complementary-libraries)
1919

2020
### Complementary Projects
@@ -25,8 +25,8 @@ _"This guide is a **living compendium** documenting the most important patterns
2525
### Playground Project
2626
[![Codeship Status for piotrwitek/react-redux-typescript-guide](https://app.codeship.com/projects/11eb8c10-d117-0135-6c51-26e28af241d2/status?branch=master)](https://app.codeship.com/projects/262359)
2727

28-
You should check Playground Project located in the `/playground` folder. It is a source of all the code examples found in the guide. They are all tested with the most recent version of TypeScript and 3rd party type definitions (like `@types/react` or `@types/react-redux`) to ensure the examples are up-to-date and not broken with updated definitions.
29-
> Playground was created is such a way, that you can simply clone the repository locally and immediately play around on your own to learn all the examples from this guide in a real project environment without the need to create some complicated environment setup by yourself.
28+
You should check out Playground Project located in the `/playground` folder. It is a source of all the code examples found in the guide. They are all tested with the most recent version of TypeScript and 3rd party type definitions (like `@types/react` or `@types/react-redux`) to ensure the examples are up-to-date and not broken with updated definitions.
29+
> Playground was created in such a way that you can simply clone the repository locally and immediately play around on your own. It will help you to learn all the examples from this guide in a real project environment without the need to create some complicated environment setup by yourself.
3030
3131
### Contribution Guide
3232
[CONTRIBUTION.md](/CONTRIBUTION.md)

0 commit comments

Comments
 (0)