1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2025-01-22 05:41:23 +01:00

docs: "return" => "remove" typo (#430)

This commit is contained in:
Tomáš Votruba 2017-10-22 13:50:47 +02:00 committed by Nikita Popov
parent 001f2d3f76
commit 651341d53b

View File

@ -429,7 +429,7 @@ class NodeVisitor_NamespaceConverter extends \PhpParser\NodeVisitorAbstract
// returning an array merges is into the parent array
return $node->stmts;
} elseif ($node instanceof Stmt\Use_) {
// return use nodes altogether
// remove use nodes altogether
return NodeTraverser::REMOVE_NODE;
}
}