From a556909c10dc715c53e74d3a50e6e472de0c743c Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 23 Feb 2023 22:00:00 -0700 Subject: [PATCH] kern: fix stray comment copy/paste error --- libmesosphere/include/mesosphere/kern_k_thread.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmesosphere/include/mesosphere/kern_k_thread.hpp b/libmesosphere/include/mesosphere/kern_k_thread.hpp index 017cf64e..f86457b4 100644 --- a/libmesosphere/include/mesosphere/kern_k_thread.hpp +++ b/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;