Skip to content

Commit 432f468

Browse files
authored
Update tree.rst
fix($ sign before the variable)
1 parent 991d5c4 commit 432f468

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/console/helpers/tree.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ class and adding nodes to it::
115115
$testsNode = new TreeNode('tests/');
116116
$functionalTestsNode = new TreeNode('Functional/');
117117
$testsNode->addChild($functionalTestsNode);
118-
$root->addChild(testsNode);
118+
$root->addChild($testsNode);
119119

120120
$tree = TreeHelper::createTree($io, $root);
121121
$tree->render();

0 commit comments

Comments
 (0)