diff --git a/loader/include/Geode/cocos/support/zip_support/ZipUtils.h b/loader/include/Geode/cocos/support/zip_support/ZipUtils.h index 17019eaa..76e2f7f7 100644 --- a/loader/include/Geode/cocos/support/zip_support/ZipUtils.h +++ b/loader/include/Geode/cocos/support/zip_support/ZipUtils.h @@ -208,9 +208,9 @@ namespace cocos2d /** * 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. * * @since geode v1.0.0 diff --git a/loader/include/Geode/utils/Task.hpp b/loader/include/Geode/utils/Task.hpp index 2b0e2e1b..80b85b95 100644 --- a/loader/include/Geode/utils/Task.hpp +++ b/loader/include/Geode/utils/Task.hpp @@ -95,7 +95,7 @@ namespace geode { enum class Status { /// The task is still running or waiting to start Pending, - /// The task has succesfully finished + /// The task has successfully finished Finished, /// The task has been cancelled Cancelled, @@ -1032,4 +1032,4 @@ auto operator co_await(geode::Task task) { template struct std::coroutine_traits, Args...> { using promise_type = geode::geode_internal::TaskPromise; -}; \ No newline at end of file +}; 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); diff --git a/loader/src/loader/LoaderImpl.cpp b/loader/src/loader/LoaderImpl.cpp index bc855f77..d878a564 100644 --- a/loader/src/loader/LoaderImpl.cpp +++ b/loader/src/loader/LoaderImpl.cpp @@ -1073,7 +1073,7 @@ void Loader::Impl::installModManuallyFromFile(std::filesystem::path const& path, createQuickPopup( "Mod Installed", fmt::format( - "Mod {} has been succesfully installed from file! " + "Mod {} has been successfully installed from file! " "Do you want to delete the original file?", meta.getName() ), @@ -1092,7 +1092,7 @@ void Loader::Impl::installModManuallyFromFile(std::filesystem::path const& path, "OK" )->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 } } diff --git a/loader/src/server/DownloadManager.cpp b/loader/src/server/DownloadManager.cpp index 545fe3ed..79a49a4d 100644 --- a/loader/src/server/DownloadManager.cpp +++ b/loader/src/server/DownloadManager.cpp @@ -256,7 +256,7 @@ std::optional ModDownloadManager::startDownload( std::optional const& dependencyFor, std::optional 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 // same mod simultaniously, since that wouldn't make sense. I mean the new // version would just immediately override to the other one