Skip to content

Commit

Permalink
ReTemporaryVariableCapitalizationRule should find args, too
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusDenker committed Jul 17, 2020
1 parent de6c80c commit 4f0e964
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Class {
{ #category : #running }
ReTemporaryVariableCapitalizationRule >> basicCheck: aNode [
aNode isVariable ifFalse: [ ^false ].
aNode isTemp ifFalse: [ ^false ].
aNode isLocalVariable ifFalse: [ ^false ].
aNode isDefinition ifFalse: [ ^false ].
^aNode name first isUppercase
]
Expand Down

0 comments on commit 4f0e964

Please sign in to comment.