Skip to content

Commit 205e45e

Browse files
Apply suggestion from @Copilot
Co-authored-by: Copilot <[email protected]>
1 parent 2712676 commit 205e45e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Validation/gen/Extensions/ITypeSymbolExtensions.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,11 +140,11 @@ attr.AttributeClass is not null &&
140140
}
141141

142142
/// <summary>
143-
/// Checks if the property is marked with [FromService] or [FromKeyedService] attributes.
143+
/// Checks if the property is marked with [FromServices] or [FromKeyedServices] attributes.
144144
/// </summary>
145145
/// <param name="property">The property to check.</param>
146-
/// <param name="fromServiceMetadataSymbol">The symbol representing the [FromService] attribute.</param>
147-
/// <param name="fromKeyedServiceAttributeSymbol">The symbol representing the [FromKeyedService] attribute.</param>
146+
/// <param name="fromServiceMetadataSymbol">The symbol representing the [FromServices] attribute.</param>
147+
/// <param name="fromKeyedServiceAttributeSymbol">The symbol representing the [FromKeyedServices] attribute.</param>
148148
internal static bool IsServiceProperty(this IPropertySymbol property, INamedTypeSymbol fromServiceMetadataSymbol, INamedTypeSymbol fromKeyedServiceAttributeSymbol)
149149
{
150150
return property.GetAttributes().Any(attr =>

0 commit comments

Comments
 (0)