Skip to content

Commit

Permalink
Fix typos (#6223)
Browse files Browse the repository at this point in the history
- Add space on README.md page
  • Loading branch information
raiym authored and akarnokd committed Sep 23, 2018
1 parent 3c773ca commit fd48d56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ The preparation of dataflows by applying various intermediate operators happens

```java
Flowable<Integer> flow = Flowable.range(1, 5)
.map(v -> v* v)
.map(v -> v * v)
.filter(v -> v % 3 == 0)
;
```
Expand Down

0 comments on commit fd48d56

Please sign in to comment.