Skip to content

Commit 1027804

Browse files
committed
Typo
1 parent 01f124d commit 1027804

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Part 2 - Sequence Basics/1. Creating a sequence.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ If you're interested in the results of the `Future` for a limited amount of time
275275
```java
276276
Observable<Integer> values = Observable.from(f, 1000, TimeUnit.MILLISECONDS);
277277
```
278-
If the `Future` has not completed the specified amount of time, the observable will ignore it and fail with a `TimeoutException`.
278+
If the `Future` has not completed in the specified amount of time, the observable will ignore it and fail with a `TimeoutException`.
279279

280280
You can also turn any collection into an observable using the overloads of `Observable.from` that take arrays and iterables. This will result in every item in the collection being emitted and then a final onCompleted event.
281281

0 commit comments

Comments
 (0)