Commit a979967378fcf3678297ff5f7e81fef528cd0cc9

Authored by Moritz W
1 parent 577181f1

Fix problem with special characters

Showing 1 changed file with 2 additions and 2 deletions
README.md
@@ -76,7 +76,7 @@ mkdir build @@ -76,7 +76,7 @@ mkdir build
76 cd build 76 cd build
77 cmake .. 77 cmake ..
78 ``` 78 ```
79 -Then compile the code with make. If you are inpatient use the option -j<number>, where number specifies how many files are compiled at the same time. Note this number should not exceed the number of cores*2 of your machine. 79 +Then compile the code with make. If you are inpatient use the option -j\<number\>, where number specifies how many files are compiled at the same time. Note this number should not exceed the number of cores*2 of your machine.
80 ```bash 80 ```bash
81 make 81 make
82 ``` 82 ```
@@ -98,7 +98,7 @@ cd build @@ -98,7 +98,7 @@ cd build
98 cmake .. -Dhueplusplus_TESTS=ON 98 cmake .. -Dhueplusplus_TESTS=ON
99 make 99 make
100 ``` 100 ```
101 -To execute them use 101 +To execute the tests use
102 ```bash 102 ```bash
103 ./hueplusplus/test/HuePlusPlus_Test 103 ./hueplusplus/test/HuePlusPlus_Test
104 ``` 104 ```