Skip to content

Commit 1472e2d

Browse files
authored
Update readme.md
1 parent ed5ca70 commit 1472e2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cyclops-rx/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Use the Observables companion class to create Observable backed ReactiveSeqs
7878
Create an Observable-backed ReactiveSeq directly or from an Observable
7979
```java
8080
ReactiveSeq<Integer> seq = Observables.just(1,2,3);
81-
ReactiveSeq<Integer> seq2 = Observables.reactiveSeq(Observables.just(1,2,3));
81+
ReactiveSeq<Integer> seq2 = Observables.reactiveSeq(Observable.just(1,2,3));
8282
```
8383

8484
With an Observable-back ReactiveSeq we can create Reactive Xtended Collections e.g. an extended j.u.List

0 commit comments

Comments
 (0)