1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-25 15:37:42 +00:00

doc: Add missing commas after "If true/false"

This commit is contained in:
Rémi Verschelde
2018-12-20 13:46:54 +01:00
parent d8067e905c
commit 6cdcde7114
107 changed files with 310 additions and 310 deletions

View File

@@ -4,7 +4,7 @@
A Visual Script node which branches the flow.
</brief_description>
<description>
A Visual Script node that checks a [bool] input port. If [code]true[/code] it will exit via the “true” sequence port. If [code]false[/code] it will exit via the "false" sequence port. After exiting either, it exits via the “done” port. Sequence ports may be left disconnected.
A Visual Script node that checks a [bool] input port. If [code]true[/code], it will exit via the “true” sequence port. If [code]false[/code], it will exit via the "false" sequence port. After exiting either, it exits via the “done” port. Sequence ports may be left disconnected.
[b]Input Ports:[/b]
- Sequence: [code]if (cond) is[/code]
- Data (boolean): [code]cond[/code]