Commit 37bbb7d09bac478c644d69b5348e47b165ce6d6a

Authored by Moritz Wirger
Committed by GitHub
1 parent 0442a1b7

Fix typos in HueLight.h

hueplusplus/include/HueLight.h
... ... @@ -106,13 +106,13 @@ public:
106 106 //! \return Bool that is true on success
107 107 bool Off(uint8_t transition = 4);
108 108  
109   - //! F\unction that returns the name of the light.
  109 + //! Function that returns the name of the light.
110 110 //! \return String containig the name of the light
111 111 std::string getName();
112 112  
113   - //! F\unction that returns the color type of the light.
  113 + //! Function that returns the color type of the light.
114 114 //! \return ColorType containig the color type of the light
115   - ColorType getCoorType();
  115 + ColorType getColorType();
116 116  
117 117 //! Function that converts Kelvin to Mired.
118 118 //! \param kelvin Unsigned integer value in Kelvin
... ... @@ -356,4 +356,4 @@ protected:
356 356 std::shared_ptr<ColorHueStrategy> _colorHueStategy; //!< holds a reference to the strategy that handles all color commands
357 357 };
358 358  
359   -#endif
360 359 \ No newline at end of file
  360 +#endif
... ...