Skip to content

Commit 195f67d

Browse files
authored
Merge pull request Froussios#31 from Froussios/Unpublished-content
Typo
2 parents 8988bc2 + 1317a28 commit 195f67d

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
@@ -246,7 +246,7 @@ Depending on what the event is, the event type (here `ActionEvent`) may be meani
246246

247247
Much like most of the functions we've seen so far, you can turn any kind of input into an Rx observable with `create`. There are several shorthands for converting common types of input.
248248

249-
`Future`s are part of the Java framework and you may come across them while using frameworks that use concurrency. They are a less powerful concept for concurrency than Rx, since they only return one value. Naturally, you'd like to them into observables.
249+
`Future`s are part of the Java framework and you may come across them while using frameworks that use concurrency. They are a less powerful concept for concurrency than Rx, since they only return one value. Naturally, you may like to turn them into observables.
250250

251251
```java
252252
FutureTask<Integer> f = new FutureTask<Integer>(() -> {

0 commit comments

Comments
 (0)