File tree 1 file changed +5
-5
lines changed
src/main/java/rx/observers 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -145,12 +145,12 @@ public static <T> TestSubscriber<T> create(long initialRequest) {
145
145
public static <T > TestSubscriber <T > create (Observer <T > delegate , long initialRequest ) {
146
146
return new TestSubscriber <T >(delegate , initialRequest );
147
147
}
148
-
148
+
149
149
/**
150
- * Factory method to construct a TestSubscriber which delegates events to the given Observer and
150
+ * Factory method to construct a TestSubscriber which delegates events to the given Subscriber and
151
151
* an issues an initial request of Long.MAX_VALUE.
152
152
* @param <T> the value type
153
- * @param delegate the observer to delegate events to
153
+ * @param delegate the subscriber to delegate events to
154
154
* @return the created TestSubscriber instance
155
155
* @throws NullPointerException if delegate is null
156
156
* @since 1.1.0
@@ -160,10 +160,10 @@ public static <T> TestSubscriber<T> create(Subscriber<T> delegate) {
160
160
}
161
161
162
162
/**
163
- * Factory method to construct a TestSubscriber which delegates events to the given Subscriber and
163
+ * Factory method to construct a TestSubscriber which delegates events to the given Observer and
164
164
* an issues an initial request of Long.MAX_VALUE.
165
165
* @param <T> the value type
166
- * @param delegate the subscriber to delegate events to
166
+ * @param delegate the observer to delegate events to
167
167
* @return the created TestSubscriber instance
168
168
* @throws NullPointerException if delegate is null
169
169
* @since 1.1.0
You can’t perform that action at this time.
0 commit comments