We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c1820f commit d13957aCopy full SHA for d13957a
Part 3 - Taming the sequence/6. Hot and Cold observables.md
@@ -161,7 +161,7 @@ Subscription s1 = cold.subscribe(i -> System.out.println("First: " + i));
161
Thread.sleep(500);
162
Subscription s2 = cold.subscribe(i -> System.out.println("Second: " + i));
163
164
-System.out.println("Unsubscribe first");
+System.out.println("Unsubscribe second");
165
s2.unsubscribe();
166
167
System.out.println("Unsubscribe first");
@@ -179,7 +179,7 @@ First: 2
179
Second: 2
180
First: 3
181
Second: 3
182
-Unsubscribe first
+Unsubscribe second
183
First: 4
184
First: 5
185
First: 6
0 commit comments