mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
Fix spelling mistakes
This commit is contained in:
parent
bf28de3f95
commit
5de6206894
1 changed files with 2 additions and 2 deletions
|
@ -850,7 +850,7 @@ namespace geode::cocos {
|
||||||
* @param permissive If true, strings like "f" are considered valid
|
* @param permissive If true, strings like "f" are considered valid
|
||||||
* representations of the color white. Useful for UIs that allow entering
|
* representations of the color white. Useful for UIs that allow entering
|
||||||
* a hex color. Empty strings evaluate to pure white
|
* a hex color. Empty strings evaluate to pure white
|
||||||
* @returns A ccColor3B if it could be succesfully parsed, or an error
|
* @returns A ccColor3B if it could be successfully parsed, or an error
|
||||||
* indicating the failure reason
|
* indicating the failure reason
|
||||||
*/
|
*/
|
||||||
GEODE_DLL Result<cocos2d::ccColor3B> cc3bFromHexString(std::string const& hexValue, bool permissive = false);
|
GEODE_DLL Result<cocos2d::ccColor3B> cc3bFromHexString(std::string const& hexValue, bool permissive = false);
|
||||||
|
@ -863,7 +863,7 @@ namespace geode::cocos {
|
||||||
* @param permissive If true, strings like "f" are considered valid
|
* @param permissive If true, strings like "f" are considered valid
|
||||||
* representations of the color white. Useful for UIs that allow entering
|
* representations of the color white. Useful for UIs that allow entering
|
||||||
* a hex color. Empty strings evaluate to pure white
|
* a hex color. Empty strings evaluate to pure white
|
||||||
* @returns A ccColor4B if it could be succesfully parsed, or an error
|
* @returns A ccColor4B if it could be successfully parsed, or an error
|
||||||
* indicating the failure reason
|
* indicating the failure reason
|
||||||
*/
|
*/
|
||||||
GEODE_DLL Result<cocos2d::ccColor4B> cc4bFromHexString(std::string const& hexValue, bool requireAlpha = false, bool permissive = false);
|
GEODE_DLL Result<cocos2d::ccColor4B> cc4bFromHexString(std::string const& hexValue, bool requireAlpha = false, bool permissive = false);
|
||||||
|
|
Loading…
Reference in a new issue