-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Update docs. #1413
Update docs. #1413
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1413 +/- ##
==========================================
+ Coverage 83.78% 83.81% +0.03%
==========================================
Files 273 274 +1
Lines 6470 6482 +12
Branches 1008 1009 +1
==========================================
+ Hits 5421 5433 +12
Misses 840 840
Partials 209 209
Flags with carried forward coverage won't be shown. Click here to find out more.
|
/// The default randomizer is thread safe and returns values between 0.0 and 1.0. | ||
/// </remarks> | ||
/// <value> | ||
/// The default value is thread safe randomizer function that returns values between 0.0 and 1.0. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/// The default value is thread safe randomizer function that returns values between 0.0 and 1.0. | |
/// The default value is a thread-safe randomizer implementation that returns values between 0.0 and 1.0. |
@@ -9,9 +9,10 @@ public abstract class ResilienceStrategyOptions | |||
/// Gets or sets the name of the strategy. | |||
/// </summary> | |||
/// <remarks> | |||
/// This name uniquely identifies particular instance of specific strategy. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/// This name uniquely identifies particular instance of specific strategy. | |
/// This name uniquely identifies a particular instance of a specific strategy. |
Details on the issue fix or feature implementation
Improving the XML docs by moving the default values from
<remarks>
to<value>
.Confirm the following