From 05254b4176eb2343ad378bf704d0358cd354439c Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Wed, 25 Dec 2019 19:57:18 +0100 Subject: [PATCH] Fix typos --- docs/HowItWorks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/HowItWorks.md b/docs/HowItWorks.md index a05fc8732cf..81a0c8baf1a 100644 --- a/docs/HowItWorks.md +++ b/docs/HowItWorks.md @@ -47,8 +47,8 @@ foreach ($fileInfos as $fileInfo) { ### 2.2 Rectify Phase -- When all nodes are ready, applicies iterates all active Rector -- Each nodes is compared to `$rector->getNodeTypes()` method to see, if this Rector should do some work on it, e.g. is this class name called `OldClassName`? +- When all nodes are ready, applicies iterates all active Rectors +- Each node is compared to `$rector->getNodeTypes()` method to see, if this Rector should do some work on it, e.g. is this class name called `OldClassName`? - If it doesn't match, it goes to next node. - If it matches, the `$rector->reconstruct($node)` method is called - Active Rector changes all what he should and returns changed node