Skip to content

Commit 5b9dd35

Browse files
committed
Merge commit 'refs/pull/43/head' of https://github.com/Froussios/Intro-To-RxJava
Fix typos in Sequence Basics (Part 2.1)
2 parents 2d5c251 + 9264879 commit 5b9dd35

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ In previous examples we used `Subject`s and manually pushed values into them to
1010

1111
### Observable.just
1212

13-
The `just` method creates an `Observable` that will emit a predifined sequence of values, supplied on creation, and then terminate.
13+
The `just` method creates an `Observable` that will emit a predefined sequence of values, supplied on creation, and then terminate.
1414

1515
```java
1616
Observable<String> values = Observable.just("one", "two", "three");
@@ -112,7 +112,7 @@ now.subscribe(System.out::println);
112112

113113
### Observable.create
114114

115-
`create` is a very powerful function for creating observables. Let have a look at the signature.
115+
`create` is a very powerful function for creating observables. Let's have a look at the signature.
116116

117117
```java
118118
static <T> Observable<T> create(Observable.OnSubscribe<T> f)
@@ -226,7 +226,7 @@ The example above waits 2 seconds, then starts counting every 1 second.
226226

227227
## Transitioning into Observable
228228

229-
There are well established tools for dealing with sequences, collections and asychronous events, which may not be directly compatible with Rx. Here we will discuss ways to turn their output into input for your Rx code.
229+
There are well established tools for dealing with sequences, collections and asynchronous events, which may not be directly compatible with Rx. Here we will discuss ways to turn their output into input for your Rx code.
230230

231231
If you are using an asynchronous tool that uses event handlers, like JavaFX, you can use `Observable.create` to turn the streams into an observable
232232

0 commit comments

Comments
 (0)