From 5de620689479f32ecd5e09563db4e99af7ef6cd2 Mon Sep 17 00:00:00 2001 From: slideglide <68702247+slideglide@users.noreply.github.com> Date: Thu, 14 Nov 2024 17:08:59 +0300 Subject: [PATCH] Fix spelling mistakes --- loader/include/Geode/utils/cocos.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/loader/include/Geode/utils/cocos.hpp b/loader/include/Geode/utils/cocos.hpp index e12276c6..6a7093ab 100644 --- a/loader/include/Geode/utils/cocos.hpp +++ b/loader/include/Geode/utils/cocos.hpp @@ -850,7 +850,7 @@ namespace geode::cocos { * @param permissive If true, strings like "f" are considered valid * representations of the color white. Useful for UIs that allow entering * 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 */ GEODE_DLL Result 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 * representations of the color white. Useful for UIs that allow entering * 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 */ GEODE_DLL Result cc4bFromHexString(std::string const& hexValue, bool requireAlpha = false, bool permissive = false);