Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/BT_basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ and propagates through the tree until it reaches a leaf node.
- The __LeafNodes__, those TreeNodes which don't have any children,
are the actual commands, i.e. the place where the behavior tree
interacts with the rest of the system.
__Actions__ nodes are the most commond type of LeafNodes.
__Actions__ nodes are the most common type of LeafNodes.

!!! Note
The word __tick__ will be often used as a *verb* (to tick / to be ticked) and it means
Expand Down Expand Up @@ -63,7 +63,7 @@ it returns SUCCESS (green) too.


In the context of __ActionNodes__, we may further distinguish between
synschronous and asynchronous nodes.
synchronous and asynchronous nodes.

The former are executed atomically and block the tree until a SUCCESS or FAILURE is returned.

Expand Down