Skip to content

Commit daeadf4

Browse files
authored
fix paramref tags (#6281)
1 parent 7e10d81 commit daeadf4

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/CSharp/ChatDetailsExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public static class ChatDetailsExtensions
1515
/// <see cref="ChatDetails.TurnDetails"/> collection.
1616
/// </summary>
1717
/// <param name="chatDetails">
18-
/// The <see cref="ChatDetails"/> object to which the <parameref name="turnDetails"/> is to be added.
18+
/// The <see cref="ChatDetails"/> object to which the <paramref name="turnDetails"/> is to be added.
1919
/// </param>
2020
/// <param name="turnDetails">
2121
/// The <see cref="ChatTurnDetails"/> for a particular LLM chat conversation turn.

src/Libraries/Microsoft.Extensions.AI.Evaluation/EvaluationMetricExtensions.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@ namespace Microsoft.Extensions.AI.Evaluation;
1414
public static class EvaluationMetricExtensions
1515
{
1616
/// <summary>
17-
/// Returns <see langword="true"/> if the supplied <paramref name="metric"/> contains any
18-
/// <see cref="EvaluationDiagnostic"/> matching the supplied <paramref name="predicate"/>; <see langword="false"/>
19-
/// otherwise.
17+
/// Determines if the supplied <paramref name="metric"/> contains any
18+
/// <see cref="EvaluationDiagnostic"/> matching the supplied <paramref name="predicate"/>.
2019
/// </summary>
2120
/// <param name="metric">The <see cref="EvaluationMetric"/> that is to be inspected.</param>
2221
/// <param name="predicate">
@@ -97,7 +96,7 @@ public static void AddOrUpdateMetadata(this EvaluationMetric metric, string name
9796
}
9897

9998
/// <summary>
100-
/// Adds or updates the supplied <parameterref name="metadata"/> to the supplied <see cref="EvaluationMetric"/>'s
99+
/// Adds or updates the supplied <paramref name="metadata"/> to the supplied <see cref="EvaluationMetric"/>'s
101100
/// <see cref="EvaluationMetric.Metadata"/> collection.
102101
/// </summary>
103102
/// <param name="metric">The <see cref="EvaluationMetric"/>.</param>

0 commit comments

Comments
 (0)