-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Error in documentation of Observable .retry(n) #6402
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hello. You could write a small program to find it out and if there is a documentation mistake, you are welcome to post a PR. |
My test program (below) shows that the The easiest doc fix would be to change the large
|
Does anyone work on this issue? |
@RomanWuattier Nobody seems to work on this so you are welcome if you want. |
Specify that the `times` function parameter describes "the number of times to resubscribe if the current Observable fails". Solves: ReactiveX#6402
Specify that the `times` function parameter describes "the number of times to resubscribe if the current *operator* fails". Also, this commit updates some unit tests to illustrate the Javadoc wording. Solves: ReactiveX#6402
Specify that the `times` function parameter describes "the number of times to resubscribe if the current *operator* fails". Also, this commit updates some unit tests to illustrate the Javadoc wording. Solves: ReactiveX#6402
Specify that the `times` function parameter describes "the number of times to resubscribe if the current *operator* fails". Also, this commit updates some unit tests to illustrate the Javadoc wording. Solves: ReactiveX#6402
Specify that the `times` function parameter describes "the number of times to resubscribe if the current *operator* fails". Also, this commit updates some unit tests to illustrate the Javadoc wording. Solves: #6402
Closing via #5458. |
There appears to be an error in the 2.x Javadoc for the
retry( n )
operator ofObservable
.n
is referred to as "number of retry attempts before failing" but the accompanying marble diagram shows only a single retry whenretry(2)
is called.Does
n
indicate the total number of subscriptions including the first one?The text was updated successfully, but these errors were encountered: