This commit is contained in:
slideglide 2024-11-15 16:26:04 +11:00 committed by GitHub
commit 66c7914a3e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 9 additions and 9 deletions

View file

@ -208,9 +208,9 @@ namespace cocos2d
/** /**
* Custom function added for geode; returns if the * Custom function added for geode; returns if the
* zip file was succesfully decoded. * zip file was successfully decoded.
* *
* @return true if the zip was succesfully loaded, * @return true if the zip was successfully loaded,
* false otherwise. * false otherwise.
* *
* @since geode v1.0.0 * @since geode v1.0.0

View file

@ -95,7 +95,7 @@ namespace geode {
enum class Status { enum class Status {
/// The task is still running or waiting to start /// The task is still running or waiting to start
Pending, Pending,
/// The task has succesfully finished /// The task has successfully finished
Finished, Finished,
/// The task has been cancelled /// The task has been cancelled
Cancelled, Cancelled,
@ -1032,4 +1032,4 @@ auto operator co_await(geode::Task<T, P> task) {
template <class T, class P, class... Args> template <class T, class P, class... Args>
struct std::coroutine_traits<geode::Task<T, P>, Args...> { struct std::coroutine_traits<geode::Task<T, P>, Args...> {
using promise_type = geode::geode_internal::TaskPromise<T, P>; using promise_type = geode::geode_internal::TaskPromise<T, P>;
}; };

View file

@ -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);

View file

@ -1073,7 +1073,7 @@ void Loader::Impl::installModManuallyFromFile(std::filesystem::path const& path,
createQuickPopup( createQuickPopup(
"Mod Installed", "Mod Installed",
fmt::format( fmt::format(
"Mod <co>{}</c> has been succesfully installed from file! " "Mod <co>{}</c> has been successfully installed from file! "
"<cy>Do you want to delete the original file?</c>", "<cy>Do you want to delete the original file?</c>",
meta.getName() meta.getName()
), ),
@ -1092,7 +1092,7 @@ void Loader::Impl::installModManuallyFromFile(std::filesystem::path const& path,
"OK" "OK"
)->show(); )->show();
} }
// No need to show a confirmation popup if succesful since that's // No need to show a confirmation popup if successful since that's
// to be assumed via pressing the button on the previous popup // to be assumed via pressing the button on the previous popup
} }
} }

View file

@ -256,7 +256,7 @@ std::optional<ModDownload> ModDownloadManager::startDownload(
std::optional<DependencyFor> const& dependencyFor, std::optional<DependencyFor> const& dependencyFor,
std::optional<std::string> const& replacesMod std::optional<std::string> const& replacesMod
) { ) {
// If this mod has already been succesfully downloaded or is currently // If this mod has already been successfully downloaded or is currently
// being downloaded, return as you can't download multiple versions of the // being downloaded, return as you can't download multiple versions of the
// same mod simultaniously, since that wouldn't make sense. I mean the new // same mod simultaniously, since that wouldn't make sense. I mean the new
// version would just immediately override to the other one // version would just immediately override to the other one