You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update XML docs to use discard param names and clarify types
Replaced unused parameter names with discards (`_`, `__`) in `Unit` and updated XML docs to refer generically to parameters. Also revised `Mediator` documentation to use non-generic type references for clarity.
/// Compares the current object with another object of the same type.
25
25
/// </summary>
26
-
/// <param name="other">An object to compare with this object.</param>
26
+
/// <param name="_">An object to compare with this object.</param>
27
27
/// <returns>
28
28
/// A value that indicates the relative order of the objects being compared.
29
29
/// The return value has the following meanings:
30
-
/// - Less than zero: This object is less than the <paramref name="other" /> parameter.
31
-
/// - Zero: This object is equal to <paramref name="other" />.
32
-
/// - Greater than zero: This object is greater than <paramref name="other" />.
30
+
/// - Less than zero: This object is less than the parameter.
31
+
/// - Zero: This object is equal to the parameter.
32
+
/// - Greater than zero: This object is greater than the parameter.
33
33
/// </returns>
34
-
publicintCompareTo(Unitother)=>0;
34
+
publicintCompareTo(Unit_)=>0;
35
35
36
36
/// <summary>
37
37
/// Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
38
38
/// </summary>
39
-
/// <param name="obj">An object to compare with this instance.</param>
39
+
/// <param name="_">An object to compare with this instance.</param>
40
40
/// <returns>
41
41
/// A value that indicates the relative order of the objects being compared.
42
42
/// The return value has these meanings:
43
-
/// - Less than zero: This instance precedes <paramref name="obj" /> in the sort order.
44
-
/// - Zero: This instance occurs in the same position in the sort order as <paramref name="obj" />.
45
-
/// - Greater than zero: This instance follows <paramref name="obj" /> in the sort order.
43
+
/// - Less than zero: This instance precedes the object in the sort order.
44
+
/// - Zero: This instance occurs in the same position in the sort order as the object.
45
+
/// - Greater than zero: This instance follows the object in the sort order.
0 commit comments