diff --git a/libraries/libmesosphere/include/mesosphere/kern_k_thread.hpp b/libraries/libmesosphere/include/mesosphere/kern_k_thread.hpp index 017cf64e2..f86457b44 100644 --- a/libraries/libmesosphere/include/mesosphere/kern_k_thread.hpp +++ b/libraries/libmesosphere/include/mesosphere/kern_k_thread.hpp @@ -214,7 +214,7 @@ namespace ams::kern { template requires (std::same_as || std::same_as) static constexpr ALWAYS_INLINE int Compare(const T &lhs, const KThread &rhs) { if (lhs.GetPriority() < rhs.GetPriority()) { - /* And then by priority. */ + /* Sort by priority. */ return -1; } else { return 1;