diff --git a/Part 3 - Taming the sequence/6. Hot and Cold observables.md b/Part 3 - Taming the sequence/6. Hot and Cold observables.md index 4f87b03..272f9bb 100644 --- a/Part 3 - Taming the sequence/6. Hot and Cold observables.md +++ b/Part 3 - Taming the sequence/6. Hot and Cold observables.md @@ -306,7 +306,7 @@ obs.subscribe(i -> System.out.println("First: " + i)); Thread.sleep(300); obs.subscribe(i -> System.out.println("Second: " + i)); ``` -[Outout](/tests/java/itrx/chapter3/hotandcold/CacheExample.java) +[Output](/tests/java/itrx/chapter3/hotandcold/CacheExample.java) ``` First: 0 First: 1 @@ -336,7 +336,7 @@ Subscription subscription = obs.subscribe(); Thread.sleep(150); subscription.unsubscribe(); ``` -[Outout](/tests/java/itrx/chapter3/hotandcold/CacheExample.java) +[Output](/tests/java/itrx/chapter3/hotandcold/CacheExample.java) ``` Subscribed 0