Skip to content

Commit d235611

Browse files
authored
Fix some typos in readme
1 parent 68c616d commit d235611

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,9 @@ There are few features that make __BehaviorTree.CPP__ unique, when compared to o
2323

2424
- You can build __reactive__ behaviors that execute multiple Actions concurrently.
2525

26-
- Even if it is written in __C++__, Trees are defined using a Domain Specific Scripting
27-
__scripting language__ (based on XML), and can be loaded at run-time; in other words,
28-
even if it written in C++, Trees are _not_ hard-coded.
26+
- Trees are defined using a Domain Specific Scripting __scripting language__ (based on XML), and can be loaded at run-time; in other words, even if written in C++, Trees are _not_ hard-coded.
2927

30-
- You can link staticaly you custom TreeNodes or convert them into __plugins__
28+
- You can staticaly link your custom TreeNodes or convert them into __plugins__
3129
which can be loaded at run-time.
3230

3331
- It provides a type-safe and flexible mechanism to do __Dataflow__ between
@@ -57,20 +55,20 @@ In practice, this means that:
5755
You should be able to implement them once and reuse them to build many behaviors.
5856

5957
- To build a Behavior Tree out of TreeNodes, the Behavior Designer must
60-
not need to read nor modify the source code of the a given TreeNode.
58+
not need to read nor modify the source code of a given TreeNode.
6159

6260
Version __3.x__ of this library introduces some dramatic changes in the API, but
6361
it was necessary to reach this goal.
6462

6563
If you used version 2.X in the past, you can
66-
[find here the Migration Guide](https://behaviortree.github.io/BehaviorTree.CPP/MigrationGuide).
64+
[find the Migration Guide here](https://behaviortree.github.io/BehaviorTree.CPP/MigrationGuide).
6765

6866

6967
# GUI Editor
7068

7169
Editing a BehaviorTree is as simple as editing a XML file in your favourite text editor.
7270

73-
If you are looking for a more fancy graphical user interface (and I know your do) check
71+
If you are looking for a more fancy graphical user interface (and I know you do) check
7472
[Groot](https://github.com/BehaviorTree/Groot) out.
7573

7674
![Groot screenshot](groot-screenshot.png)

0 commit comments

Comments
 (0)