Skip to content

Commit 9efe4b1

Browse files
authored
Fix script keyword in tutorial_06_subtree_ports.md (#35)
Should be: ``` <Script code=" move_goal='1;2;3' " /> ``` Instead of ``` <Script script=" move_goal='1;2;3' " /> ```
1 parent 161e234 commit 9efe4b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/tutorial-basics/tutorial_06_subtree_ports.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Let's consider this Behavior Tree.
2828

2929
<BehaviorTree ID="MainTree">
3030
<Sequence>
31-
<Script script=" move_goal='1;2;3' " />
31+
<Script code=" move_goal='1;2;3' " />
3232
// highlight-start
3333
<SubTree ID="MoveRobot" target="{move_goal}"
3434
result="{move_result}" />
@@ -41,10 +41,10 @@ Let's consider this Behavior Tree.
4141
<Fallback>
4242
<Sequence>
4343
<MoveBase goal="{target}"/>
44-
<Script script=" result:='goal reached' " />
44+
<Script code=" result:='goal reached' " />
4545
</Sequence>
4646
<ForceFailure>
47-
<Script script=" result:='error' " />
47+
<Script code=" result:='error' " />
4848
</ForceFailure>
4949
</Fallback>
5050
</BehaviorTree>

0 commit comments

Comments
 (0)