-
-
Notifications
You must be signed in to change notification settings - Fork 804
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
a minor changes to improve the readability #1419
Comments
@iPazooki, it's a very small change, so probably doesn't warrant extended discussion, just a few points on this:
That being said, yes, the present condition is a little unwieldy. There's no reason why it absolutely has to stay that way. |
Fixed in #1422 |
In this ReturnsExtensions.cs file, we are using
if (!(minDelay < maxDelay))
which could be changed toif (minDelay >= maxDelay)
which is more readable.The text was updated successfully, but these errors were encountered: