Skip to content

Commit 5259458

Browse files
committed
Fix typos in Readme
1 parent a664991 commit 5259458

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ node_modules/
33
examples/**/*.js
44
coverage/
55
*.json
6+
*.md

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
`react-with-observable`: use Observables declaratively in ️️React!
99

10-
* ✅ Supports any Observable implementation compatible with ECMAScript Observable (eg. **RxJS**)!
10+
* ✅ Supports any Observable implementation compatible with ECMAScript Observable (e.g. **RxJS**)!
1111
* ✅ Inspired by the `AsyncPipe` from Angular!
1212
* ✅ Very extensible by composing Observable operators!
1313
* ✅ TypeScript definitions included!
@@ -44,7 +44,7 @@ const source$ = Observable.interval(1000);
4444
<Subscribe>{source$}</Subscribe>
4545
```
4646

47-
As a result, next integer is displayed every second.
47+
As a result, the next integer is displayed every second.
4848

4949

5050
### Operators
@@ -62,7 +62,7 @@ const source$ = Observable.interval(1000);
6262
</Subscribe>
6363
```
6464

65-
As a result, an `<input>` element is rendered. Its value is changed every second to 0, 10, 30, 60, 100 and so on.
65+
As the result, an `<input>` element is rendered. Its value is changed every second to 0, 10, 30, 60, 100, and so on.
6666

6767
### Initial value
6868
Use your Observable library! `react-with-observable` doesn't implement any custom way to provide the default value and it doesn't need to. For example, with RxJS, you can use the `startWith` operator:
@@ -127,4 +127,3 @@ export class ContactsList extends React.Component {
127127

128128
## Bugs? Feature requests?
129129
Feel free to create a new issue: [issues](https://github.com/mmiszy/react-with-observable/issues). Pull requests are also welcome!
130-

0 commit comments

Comments
 (0)