@@ -96,7 +96,7 @@ First make sure all dependencies are installed:
9696- [ yaml-cpp] ( https://github.com/jbeder/yaml-cpp )
9797- [ Googletest] ( https://github.com/google/googletest ) (optional, if you want to build unit tests)
9898- [ Crow] ( https://crowcpp.org ) (optional, needed for GUI only)
99- - [ pybind11] ( https://pybind11.readthedocs.io/en/stable/ ) (optional, if you want to build Python bindings and unit tests)
99+ - [ pybind11] ( https://pybind11.readthedocs.io/en/stable/ ) (optional, if you want to build Python bindings and Python unit tests)
100100
101101See also the [ ` Dockerfile ` ] ( ./Dockerfile ) for how to install these packages under Debian or Ubuntu.
102102</details >
@@ -185,7 +185,8 @@ PYBIND11_MODULE(arbitration_graphs, m) {
185185 python_api::bindArbitrationGraphs<MyCommand >(m);
186186}
187187```
188- and use them in Python by for example implementing a custom behavior that inherits from the abstract `Behavior` class.
188+ and use them in Python.
189+ For example, you could implement a custom behavior that inherits from the abstract `Behavior` class.
189190
190191```python
191192from arbitration_graphs import Behavior
@@ -196,7 +197,6 @@ class MyBehavior(Behavior):
196197```
197198We re-implemented all of the C++ unit tests in Python, so take a closer look at those for more advanced usage examples.
198199
199- </details >
200200
201201## Development
202202
@@ -222,7 +222,7 @@ There, you can edit the source code, compile and run the tests etc.
222222<summary >Compiling unit tests</summary >
223223
224224To compile and run the C++ unit tests, make sure Googletest is available.
225- For the python tests, make sure pybind11 is installed.
225+ For the Python tests, make sure pybind11 is installed.
226226
227227In order to compile with tests define ` BUILD_TESTS=true `
228228``` bash
0 commit comments