Commit d620d1b64148145b8f3c11c3f76fcca29710e1a5
Committed by
GitHub
1 parent
7bf5f42f
Fix more typos in readme
Showing
1 changed file
with
1 additions
and
1 deletions
README.md
| @@ -42,7 +42,7 @@ is the id of the light set internally by the Hue Bridge. | @@ -42,7 +42,7 @@ is the id of the light set internally by the Hue Bridge. | ||
| 42 | ```C++ | 42 | ```C++ |
| 43 | HueLight light1 = bridge.getLight(1); | 43 | HueLight light1 = bridge.getLight(1); |
| 44 | ``` | 44 | ``` |
| 45 | -If you don't know the id of a specific light or want to get an overview over all lights that are controlled by your bridge you can do that by calling getAllLights() on your bridge object. If no lights are founb the vector will be empty. | 45 | +If you don't know the id of a specific light or want to get an overview over all lights that are controlled by your bridge, you can get a vector containing them by calling getAllLights() on your bridge object. If no lights are found the vector will be empty. |
| 46 | ```C++ | 46 | ```C++ |
| 47 | std::vector<std::reference_wrapper<HueLight>> lights = bridge.getAllLights(); | 47 | std::vector<std::reference_wrapper<HueLight>> lights = bridge.getAllLights(); |
| 48 | ``` | 48 | ``` |