Skip to content

Commit 5f0d976

Browse files
Fixed a spelling mistake
1 parent 92f9bb3 commit 5f0d976

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Framework/AspNetCoreAnalyzers/src/Analyzers/RouteHandlers/DisallowNonParsableComplexTypesOnParameters.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ private static void DisallowNonParsableComplexTypesOnParameters(
3030
continue;
3131
}
3232

33-
var parameterTypeSymbol = ResovleParameterTypeSymbol(handlerDelegateParameter);
33+
var parameterTypeSymbol = ResolveParameterTypeSymbol(handlerDelegateParameter);
3434

3535
// If this is null it means we aren't working with a named type symbol.
3636
if (parameterTypeSymbol == null)
@@ -113,7 +113,7 @@ static bool ReportFromAttributeDiagnostic(OperationAnalysisContext context, Well
113113
return false;
114114
}
115115

116-
static INamedTypeSymbol? ResovleParameterTypeSymbol(IParameterSymbol parameterSymbol)
116+
static INamedTypeSymbol? ResolveParameterTypeSymbol(IParameterSymbol parameterSymbol)
117117
{
118118
INamedTypeSymbol? parameterTypeSymbol = null;
119119

0 commit comments

Comments
 (0)