From 3292ea597085fc548858526cc3f556a3d8b35677 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 --- libraries/libmesosphere/include/mesosphere/kern_k_thread.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;