Skip to content

Commit

Permalink
style: Add comment to type param of the ToActionResult method
Browse files Browse the repository at this point in the history
  • Loading branch information
MrDave1999 committed Nov 12, 2023
1 parent 76525c4 commit b0d03dc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/AspNetCore/ResultExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ public static class ResultExtensions
/// Converts the <see cref="PagedResult{T}" /> to <see cref="ActionResult{TValue}"/>
/// where <c>TValue</c> is a <see cref="PagedResult{T}" />.
/// </summary>
/// <typeparam name="T">The type of objects to enumerate.</typeparam>
/// <param name="result">
/// An instance of type <see cref="PagedResult{T}"/>.
/// </param>
Expand All @@ -30,6 +31,7 @@ public static ActionResult<PagedResult<T>> ToActionResult<T>(this PagedResult<T>
/// Converts the <see cref="ListedResult{T}" /> to <see cref="ActionResult{TValue}"/>
/// where <c>TValue</c> is a <see cref="ListedResult{T}" />.
/// </summary>
/// <typeparam name="T">The type of objects to enumerate.</typeparam>
/// <param name="result">
/// An instance of type <see cref="ListedResult{T}"/>.
/// </param>
Expand All @@ -47,6 +49,7 @@ public static ActionResult<ListedResult<T>> ToActionResult<T>(this ListedResult<
/// Converts the <see cref="Result{T}" /> to <see cref="ActionResult{TValue}"/>
/// where <c>TValue</c> is a <see cref="Result{T}" />.
/// </summary>
/// <typeparam name="T">A value associated to the result.</typeparam>
/// <param name="result">
/// An instance of type <see cref="Result{T}"/>.
/// </param>
Expand Down

0 comments on commit b0d03dc

Please sign in to comment.