Skip to content

Commit

Permalink
Use the correct word (#3052)
Browse files Browse the repository at this point in the history
  • Loading branch information
greg0ire committed Nov 11, 2022
1 parent 86c0920 commit e28e7a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Rector\Tests\Naming\Rector\ClassMethod\RenameVariableToMatchNewTypeRec

use PhpParser\Node\Expr\Assign;

final class SkipMethodCallRenameBellow
final class SkipMethodCallRenameBelow
{
public function run()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Rector\Tests\Naming\Rector\ClassMethod\RenameVariableToMatchNewTypeRec

use PhpParser\Node\Expr\Assign;

final class SkipParamRenameBellow
final class SkipParamRenameBelow
{
public function run($assign)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public function refactor(Node $node): ?Node
* $<some> = 1000;
* $this->value = $<some>;
*
* + not used $<some> bellow, so removal will not break it
* + not used $<some> below, so removal will not break it
*/
private function areTwoVariablesCrossAssign(Assign $currentAssign, Assign $nextAssign): bool
{
Expand Down

0 comments on commit e28e7a1

Please sign in to comment.