Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Docs] BT_basics fix typo #343

Merged
merged 1 commit into from
Mar 2, 2022
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