1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-30 04:19:30 +01:00

Fix a minor typo

This commit is contained in:
Hassan Tariq 2020-04-18 12:11:33 +05:00 committed by Nikita Popov
parent bd43ec7152
commit f33f081c8f

View File

@ -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