From 23cddd311199ab6ebf78519b813c3be20339540c Mon Sep 17 00:00:00 2001 From: TaeHyun Kim Date: Sun, 8 Jul 2018 21:26:12 +0900 Subject: [PATCH] Fix typo in part 1.2 --- Part 1 - Getting Started/2. Key types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Part 1 - Getting Started/2. Key types.md b/Part 1 - Getting Started/2. Key types.md index 7519602..571b356 100644 --- a/Part 1 - Getting Started/2. Key types.md +++ b/Part 1 - Getting Started/2. Key types.md @@ -129,7 +129,7 @@ Late: 2 Late: 3 ``` -Our late subscriber now missed the first value, which fell off the buffer of size 2. Similarily, old values fall off the buffer as time passes, when the subject is created with `createWithTime` +Our late subscriber now missed the first value, which fell off the buffer of size 2. Similarly, old values fall off the buffer as time passes, when the subject is created with `createWithTime`. ```java ReplaySubject s = ReplaySubject.createWithTime(150, TimeUnit.MILLISECONDS,