File tree Expand file tree Collapse file tree
StyleCop.Analyzers.Test/ReadabilityRules
StyleCop.Analyzers/ReadabilityRules Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -276,7 +276,7 @@ public void Bar()
276276 }
277277
278278 [ Fact ]
279- public async Task TestLambdaCallSecondParameterIsAnonynousMethodAsync ( )
279+ public async Task TestLambdaCallSecondParameterIsAnonymousMethodAsync ( )
280280 {
281281 var testCode = @"
282282class Foo
@@ -341,7 +341,7 @@ public void Bar()
341341 }
342342
343343 [ Fact ]
344- public async Task TestAttributeSecondParameterSpandsMultipleLinesAsync ( )
344+ public async Task TestAttributeSecondParameterSpansMultipleLinesAsync ( )
345345 {
346346 var testCode = @"
347347[System.AttributeUsage(System.AttributeTargets.Class,AllowMultiple = true)]
Original file line number Diff line number Diff line change @@ -131,10 +131,10 @@ private static bool CheckIfArgumentIsMultiline(CSharpSyntaxNode argument)
131131 return lineSpan . EndLinePosition . Line > lineSpan . StartLinePosition . Line ;
132132 }
133133
134- private static bool IsArgumentOnExceptionList ( ExpressionSyntax argumentExpresson )
134+ private static bool IsArgumentOnExceptionList ( ExpressionSyntax argumentExpression )
135135 {
136- return argumentExpresson != null
137- && ArgumentExceptionSyntaxKinds . Any ( argumentExpresson . IsKind ) ;
136+ return argumentExpression != null
137+ && ArgumentExceptionSyntaxKinds . Any ( argumentExpression . IsKind ) ;
138138 }
139139 }
140140}
You can’t perform that action at this time.
0 commit comments