Skip to content

Commit c5ee707

Browse files
Update README.md
- fixed styles and grammar
1 parent 305f7e0 commit c5ee707

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ You can download the PDF and Epub version of this repository from the latest run
9797
|44| [What is the difference between promise and observable?](#what-is-the-difference-between-promise-and-observable)|
9898
|45| [What is multicasting?](#what-is-multicasting)|
9999
|46| [How do you perform error handling in observables?](#how-do-you-perform-error-handling-in-observables)|
100-
|47| [What is the short hand notation for subscribe method?](#what-is-the-short-hand-notation-for-subscribe-method)|
100+
|47| [What is the shorthand notation for subscribe method?](#what-is-the-shorthand-notation-for-subscribe-method)|
101101
|48| [What are the utility functions provided by RxJS?](#what-are-the-utility-functions-provided-by-rxjs)|
102102
|49| [What are observable creation functions?](#what-are-observable-creation-functions)|
103103
|50| [What will happen if you do not supply handler for observer?](#what-will-happen-if-you-do-not-supply-handler-for-observer)|
@@ -1237,7 +1237,7 @@ You can download the PDF and Epub version of this repository from the latest run
12371237
**[⬆ Back to Top](#table-of-contents)**
12381238
12391239
49. ### What are observable creation functions?
1240-
RxJS provides creation functions for the process of creating observables from things such as promises, events, timers and Ajax requests. Let us explain each of them with an example,
1240+
RxJS provides creation functions for the process of creating observables from promises, events, timers and Ajax requests. Let us explain each of them with an example:
12411241
1. Create an observable from a promise
12421242
```javascript
12431243
import { from } from 'rxjs'; // from function

0 commit comments

Comments
 (0)