Skip to content

Commit 58d5cd0

Browse files
Update tutorial_09_scripting.md (#52)
Fix indentation in code
1 parent 25d7299 commit 58d5cd0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/tutorial-basics/tutorial_09_scripting.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ We will use this XML:
3838
<Sequence>
3939
<Script code=" msg:='hello world' " />
4040
<Script code=" A:=THE_ANSWER; B:=3.14; color:=RED " />
41-
<Precondition if="A>B && color != BLUE" else="FAILURE">
42-
<Sequence>
43-
<SaySomething message="{A}"/>
44-
<SaySomething message="{B}"/>
45-
<SaySomething message="{msg}"/>
46-
<SaySomething message="{color}"/>
41+
<Precondition if="A>B && color != BLUE" else="FAILURE">
42+
<Sequence>
43+
<SaySomething message="{A}"/>
44+
<SaySomething message="{B}"/>
45+
<SaySomething message="{msg}"/>
46+
<SaySomething message="{color}"/>
4747
</Sequence>
4848
</Precondition>
4949
</Sequence>
@@ -95,4 +95,4 @@ int main()
9595

9696
return 0;
9797
}
98-
```
98+
```

0 commit comments

Comments
 (0)