You need to sign in before continuing.

Commit 1a844013b1e04c504051d0042114ea87e8395166

Authored by Nodeduino
1 parent 086d7d37

fix README

Showing 1 changed file with 2 additions and 2 deletions
README.md
... ... @@ -11,7 +11,7 @@ A simple and easy to use library for Philips Hue Lights
11 11 ## How to use
12 12 ### <a name="findingBridges"></a>Finding Bridges
13 13 If you want to find a Hue Bridge make a HueFinder object and call FindBridges()
14   -it will return a vector containing the ip and mac adress of all found Bridges.
  14 +it will return a vector containing the ip and mac address of all found Bridges.
15 15 If no Bridges were found the vector is empty, so make sure that in that case you provide an ip and mac address.
16 16 ```C++
17 17 HueFinder finder;
... ... @@ -25,7 +25,7 @@ if (bridges.empty())
25 25 ### Using Bridges
26 26 If you have found the Bridge you were looking for, you can then move on with the authentication process.
27 27 To get a new username from the Bridge (for now) you simply call GetBridge(bridges[<index>]),
28   -where index is your preferred Bridge from the part [Finding Bridges](findingBridges).
  28 +where index is your preferred Bridge from the part [Finding Bridges](#findingBridges).
29 29 ```C++
30 30 Hue bridge = finder.GetBridge(bridges[0]);
31 31 ```
... ...