You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ _"This guide is a **living compendium** documenting the most important patterns
4
4
5
5
[](https://gitter.im/react-redux-typescript-guide/Lobby)
6
6
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)
8
8
9
9
> _[The Mighty Tutorial](https://github.com/piotrwitek/typesafe-actions#behold-the-mighty-tutorial) for completely typesafe Redux Architecture_:book:
10
10
@@ -14,7 +14,7 @@ _"This guide is a **living compendium** documenting the most important patterns
14
14
15
15
### Goals
16
16
- 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**
18
18
- Reduce repetition and complexity of types with TypeScript focused [complementary libraries](#complementary-libraries)
19
19
20
20
### Complementary Projects
@@ -25,8 +25,8 @@ _"This guide is a **living compendium** documenting the most important patterns
25
25
### Playground Project
26
26
[](https://app.codeship.com/projects/262359)
27
27
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.
Copy file name to clipboardExpand all lines: docs/markdown/_intro.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ _"This guide is a **living compendium** documenting the most important patterns
4
4
5
5
[](https://gitter.im/react-redux-typescript-guide/Lobby)
6
6
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)
8
8
9
9
> _[The Mighty Tutorial](https://github.com/piotrwitek/typesafe-actions#behold-the-mighty-tutorial) for completely typesafe Redux Architecture_:book:
10
10
@@ -14,7 +14,7 @@ _"This guide is a **living compendium** documenting the most important patterns
14
14
15
15
### Goals
16
16
- 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**
18
18
- Reduce repetition and complexity of types with TypeScript focused [complementary libraries](#complementary-libraries)
19
19
20
20
### Complementary Projects
@@ -25,8 +25,8 @@ _"This guide is a **living compendium** documenting the most important patterns
25
25
### Playground Project
26
26
[](https://app.codeship.com/projects/262359)
27
27
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.
0 commit comments