Skip to content

Commit

Permalink
Fix typo in ValidationFilter.cs (#79)
Browse files Browse the repository at this point in the history
indicies -> indices

Signed-off-by: Ikko Eltociear Ashimine <[email protected]>
  • Loading branch information
eltociear authored Jul 17, 2023
1 parent 3be1993 commit c209f6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TodoApi/Filters/ValidationFilter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public static TBuilder WithParameterValidation<TBuilder>(this TBuilder builder,
return;
}
// Track the indicies of validatable parameters
// Track the indices of validatable parameters
List<int>? parameterIndexesToValidate = null;
foreach (var p in methodInfo.GetParameters())
{
Expand Down

0 comments on commit c209f6a

Please sign in to comment.