Skip to content

Commit 2d5c251

Browse files
committed
Merge commit 'refs/pull/53/head' of https://github.com/Froussios/Intro-To-RxJava
Fix typo in part 1.2
2 parents e9da6ce + 23cddd3 commit 2d5c251

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Part 1 - Getting Started/2. Key types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Late: 2
129129
Late: 3
130130
```
131131

132-
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`
132+
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`.
133133

134134
```java
135135
ReplaySubject<Integer> s = ReplaySubject.createWithTime(150, TimeUnit.MILLISECONDS,

0 commit comments

Comments
 (0)