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
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1101,11 +1101,11 @@ You can download the PDF and Epub version of this repository from the latest run
1101
1101
**[⬆ Back to Top](#table-of-contents)**
1102
1102
1103
1103
41. ### What is subscribing?
1104
-
An Observable instance begins publishing values only when someone subscribes to it. So you need to subscribe by calling the **subscribe()** method of the instance, passing an observer object to receive the notifications.
1104
+
An Observable instance begins publishing values only when someone subscribes to it. So you need to subscribe by calling the `subscribe()` method of the instance, passing an observer object to receive the notifications.
1105
1105
1106
1106
Let's take an example of creating and subscribing to a simple observable, with an observer that logs the received message to the console.
1107
1107
```javascript
1108
-
Creates an observable sequence of 5 integers, starting from 1
1108
+
// Creates an observable sequence of 5 integers, starting from 1
0 commit comments