Skip to content

Commit 8ae9931

Browse files
committed
Fixed typos #87 & #88
1 parent 7ed6e3c commit 8ae9931

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## React & Redux in TypeScript - Static Typing Guide
22

3-
_"This guide is a **living compendium** documenting the most important patterns and recipes on how to use **React** (and it's Ecosystem) in a **functional style with TypeScript** and to make your code **completely type-safe** while focusing on a **conciseness of type annotations** so it's a minimal effort to write and to maintain types in the long run."_
3+
_"This guide is a **living compendium** documenting the most important patterns and recipes on how to use **React** (and its Ecosystem) in a **functional style with TypeScript** and to make your code **completely type-safe** while focusing on a **conciseness of type annotations** so it's a minimal effort to write and to maintain types in the long run."_
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

@@ -117,7 +117,7 @@ const withState = <P extends WrappedComponentProps>(
117117
[⇧ back to top](#table-of-contents)
118118
119119
#### `React.ReactElement<P>` or `JSX.Element`
120-
Type representing a concept of React Element - representation of a native DOM component (<div />), or a user-defined composite component (<MyComponent />)
120+
Type representing a concept of React Element - representation of a native DOM component (e.g. `<div />`), or a user-defined composite component (e.g. `<MyComponent />`)
121121
```tsx
122122
const elementOnly: React.ReactElement = <div /> || <MyComponent />;
123123
```

Diff for: docs/markdown/1_react.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const withState = <P extends WrappedComponentProps>(
2424
[⇧ back to top](#table-of-contents)
2525
2626
#### `React.ReactElement<P>` or `JSX.Element`
27-
Type representing a concept of React Element - representation of a native DOM component (<div />), or a user-defined composite component (<MyComponent />)
27+
Type representing a concept of React Element - representation of a native DOM component (e.g. `<div />`), or a user-defined composite component (e.g. `<MyComponent />`)
2828
```tsx
2929
const elementOnly: React.ReactElement = <div /> || <MyComponent />;
3030
```

Diff for: docs/markdown/_intro.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## React & Redux in TypeScript - Static Typing Guide
22

3-
_"This guide is a **living compendium** documenting the most important patterns and recipes on how to use **React** (and it's Ecosystem) in a **functional style with TypeScript** and to make your code **completely type-safe** while focusing on a **conciseness of type annotations** so it's a minimal effort to write and to maintain types in the long run."_
3+
_"This guide is a **living compendium** documenting the most important patterns and recipes on how to use **React** (and its Ecosystem) in a **functional style with TypeScript** and to make your code **completely type-safe** while focusing on a **conciseness of type annotations** so it's a minimal effort to write and to maintain types in the long run."_
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

0 commit comments

Comments
 (0)