diff --git a/doc/component/Walking_the_AST.markdown b/doc/component/Walking_the_AST.markdown index efa00004..81c4d3c0 100644 --- a/doc/component/Walking_the_AST.markdown +++ b/doc/component/Walking_the_AST.markdown @@ -295,7 +295,7 @@ Simple node finding While the node visitor mechanism is very flexible, creating a node visitor can be overly cumbersome for minor tasks. For this reason a `NodeFinder` is provided, which can find AST nodes that either -satisfy a certain callback, or which are instanced of a certain node type. A couple of examples are +satisfy a certain callback, or which are instances of a certain node type. A couple of examples are shown in the following: ```php