Skip to content

Commit e9da6ce

Browse files
authored
Merge pull request Froussios#56 from ihac/patch-1
Typo fix in Part 3 Chapter 5
2 parents 4521922 + 665f184 commit e9da6ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Part 3 - Taming the sequence/5. Time-shifted sequences.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ We see a lot of empty lists here. This is because the buffer is emitted both whe
8181

8282
#### buffer with signal
8383

84-
Instead of fixed points in time, you can also signal `buffer` with an observable to flush. Every time the signal emits onNext, the values in the buffer will be emitted will be emitted. Buffering with a signal can be very useful if you want to buffer values until the moment that you are ready for them.
84+
Instead of fixed points in time, you can also signal `buffer` with an observable to flush. Every time the signal emits onNext, the values in the buffer will be emitted. Buffering with a signal can be very useful if you want to buffer values until the moment that you are ready for them.
8585

8686
![](https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/buffer8.png)
8787

@@ -155,7 +155,7 @@ Observable.interval(100, TimeUnit.MILLISECONDS).take(10)
155155

156156
#### buffer by signal
157157

158-
The last and most powerful variant or `buffer` allows you to define the start and the end of buffers using signaling observables.
158+
The last and most powerful variant of `buffer` allows you to define the start and the end of buffers using signaling observables.
159159
```java
160160
public final <TOpening,TClosing> Observable<java.util.List<T>> buffer(
161161
Observable<? extends TOpening> bufferOpenings,

0 commit comments

Comments
 (0)