Skip to content

Commit c07c9ab

Browse files
authored
Merge pull request sudheerj#14 from faiyazbits/patch-1
Update README.md
2 parents 533d826 + 32abe62 commit c07c9ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -946,7 +946,7 @@
946946
};
947947
948948
// Execute with the observer object and Prints out each item
949-
myObservable.subscribe(myObserver);
949+
source.subscribe(myObserver);
950950
// => Observer got a next value: 1
951951
// => Observer got a next value: 2
952952
// => Observer got a next value: 3
@@ -3180,4 +3180,4 @@
31803180
212. ### What is the precedence between pipe and ternary operators?
31813181
The pipe operator has a higher precedence than the ternary operator (?:). For example, the expression `first ? second : third | fourth` is parsed as `first ? second : (third | fourth)`.
31823182
3183-
**[⬆ Back to Top](#table-of-contents)**
3183+
**[⬆ Back to Top](#table-of-contents)**

0 commit comments

Comments
 (0)