Skip to content

Commit 259c2a1

Browse files
committed
docs: Update XML comments in HtmxorComponentResult and PropertyHelper
Updated the XML comments in two classes, HtmxorComponentResult and PropertyHelper. Removed the <see cref="..."/> tags for better readability and clarity. This change does not affect production code.
1 parent 49358ad commit 259c2a1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/Htmxor/Endpoints/Results/HtmxorComponentResult.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public HtmxorComponentResult(
9393
/// Processes this result in the given <paramref name="httpContext" />.
9494
/// </summary>
9595
/// <param name="httpContext">An <see cref="HttpContext" /> associated with the current request.</param >
96-
/// <returns >A <see cref="T:System.Threading.Tasks.Task" /> which will complete when execution is completed.</returns >
96+
/// <returns >A System.Threading.Tasks.Task which will complete when execution is completed.</returns >
9797
public Task ExecuteAsync(HttpContext httpContext)
9898
=> HtmxorComponentResultExecutor.ExecuteAsync(httpContext, this);
9999
}

src/Htmxor/Endpoints/Results/PropertyHelper.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public static PropertyHelper[] GetProperties(
128128
/// on the specified type.
129129
/// </para>
130130
/// <para>
131-
/// <see cref="M:GetVisibleProperties"/> excludes properties defined on base types that have been
131+
/// GetVisibleProperties excludes properties defined on base types that have been
132132
/// hidden by definitions using the <c>new</c> keyword.
133133
/// </para>
134134
/// </summary>
@@ -401,7 +401,7 @@ private static void CallPropertySetter<TDeclaringType, TValue>(
401401
/// on the specified type.
402402
/// </para>
403403
/// <para>
404-
/// <see cref="M:GetVisibleProperties"/> excludes properties defined on base types that have been
404+
/// GetVisibleProperties excludes properties defined on base types that have been
405405
/// hidden by definitions using the <c>new</c> keyword.
406406
/// </para>
407407
/// </summary>

src/Htmxor/Rendering/HtmxorHtmlRenderer.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ public ValueTask DisposeAsync()
2929
=> renderer.DisposeAsync();
3030

3131
/// <summary>
32-
/// Gets the <see cref="Components.Dispatcher" /> associated with this instance. Any calls to
32+
/// Gets the <see cref="Dispatcher" /> associated with this instance. Any calls to
3333
/// <see cref="RenderComponentAsync{TComponent}()"/> or <see cref="BeginRenderingComponent{TComponent}()"/>
34-
/// must be performed using this <see cref="Components.Dispatcher" />.
34+
/// must be performed using this <see cref="Dispatcher" />.
3535
/// </summary>
3636
public Dispatcher Dispatcher => renderer.Dispatcher;
3737

0 commit comments

Comments
 (0)