Skip to content
This repository was archived by the owner on Nov 18, 2024. It is now read-only.

Commit 183954b

Browse files
committed
Update 5. Transformation of sequences.md
1 parent 8760658 commit 183954b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Part 2 - Sequence Basics/5. Transformation of sequences.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Map: 2
115115
Map: Error: java.lang.ClassCastException: Cannot cast java.lang.String to java.lang.Integer
116116
```
117117

118-
If you would rather have such cases ignored, you can you the `ofType` method. This will filter our items that cannot be cast and then cast the sequence to the desired type.
118+
If you would rather have such cases ignored, you can use the `ofType` method. This will filter our items that cannot be cast and then cast the sequence to the desired type.
119119

120120
```java
121121
Observable<Object> values = Observable.just(0, 1, "2", 3);
@@ -182,7 +182,7 @@ TimeInterval: TimeInterval [intervalInMilliseconds=100, value=2]
182182
TimeInterval: Completed
183183
```
184184

185-
The information captured by `timestamp` and `timeInterval` is very useful for logging and debugging. It is Rx's way of aquiring information about the asynchronicity of sequences.
185+
The information captured by `timestamp` and `timeInterval` is very useful for logging and debugging. It is Rx's way of acquiring information about the asynchronicity of sequences.
186186

187187
### materialize and dematerialize
188188

0 commit comments

Comments
 (0)