From d02e6fa9654c38571c430d5cca75ed58ef6eb3ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Justin=20In=C3=A1cio?= Date: Sun, 8 Oct 2017 15:48:03 +0200 Subject: [PATCH] - Corrected spelling mistake - "Output" was written as "outout" --- Part 3 - Taming the sequence/6. Hot and Cold observables.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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