We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed5ca70 commit 1472e2dCopy full SHA for 1472e2d
cyclops-rx/readme.md
@@ -78,7 +78,7 @@ Use the Observables companion class to create Observable backed ReactiveSeqs
78
Create an Observable-backed ReactiveSeq directly or from an Observable
79
```java
80
ReactiveSeq<Integer> seq = Observables.just(1,2,3);
81
-ReactiveSeq<Integer> seq2 = Observables.reactiveSeq(Observables.just(1,2,3));
+ReactiveSeq<Integer> seq2 = Observables.reactiveSeq(Observable.just(1,2,3));
82
```
83
84
With an Observable-back ReactiveSeq we can create Reactive Xtended Collections e.g. an extended j.u.List
0 commit comments