Skip to content

Commit b346d22

Browse files
author
Chris Martinez
committed
Fixed comment typo
1 parent d39a9a2 commit b346d22

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Common/Versioning/ApiVersionModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ public ApiVersionModel(
197197
/// </summary>
198198
/// <value>A <see cref="IReadOnlyList{T}">read-only list</see> of <see cref="ApiVersion">API versions</see>
199199
/// declared by the controller or action.</value>
200-
/// <remarks>The declared API versions are constrainted to the versions declared explicitly by the specified controller or action.</remarks>
200+
/// <remarks>The declared API versions are constrained to the versions declared explicitly by the specified controller or action.</remarks>
201201
public IReadOnlyList<ApiVersion> DeclaredApiVersions => declaredVersions.Value;
202202

203203
/// <summary>

src/Microsoft.AspNet.WebApi.Versioning/System.Web.Http/HttpControllerDescriptorExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ internal static IEnumerable<HttpControllerDescriptor> AsEnumerable( this HttpCon
157157
/// <param name="controllerDescriptor">The <see cref="HttpControllerDescriptor">controller</see> to evaluate.</param>
158158
/// <returns>A <see cref="IReadOnlyList{T}">read-only list</see> of <see cref="ApiVersion">API versions</see>
159159
/// declared by the controller.</returns>
160-
/// <remarks>The declared API versions are constrainted to the versions declared explicitly by the specified controller.</remarks>
160+
/// <remarks>The declared API versions are constrained to the versions declared explicitly by the specified controller.</remarks>
161161
public static IReadOnlyList<ApiVersion> GetDeclaredApiVersions( this HttpControllerDescriptor controllerDescriptor ) => controllerDescriptor.GetApiVersionModel().DeclaredApiVersions;
162162

163163
/// <summary>

0 commit comments

Comments
 (0)