From de9faf183ac9f5eeb00596cd7b75e3b35a3bc571 Mon Sep 17 00:00:00 2001
From: Evan Husted <greem@greemdev.net>
Date: Mon, 3 Feb 2025 19:45:05 -0600
Subject: [PATCH] misc: chore: [ci skip] wrong element order

---
 src/Ryujinx/Utilities/PlayReportAnalyzer.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Ryujinx/Utilities/PlayReportAnalyzer.cs b/src/Ryujinx/Utilities/PlayReportAnalyzer.cs
index 80bef13bc..f71642b7d 100644
--- a/src/Ryujinx/Utilities/PlayReportAnalyzer.cs
+++ b/src/Ryujinx/Utilities/PlayReportAnalyzer.cs
@@ -180,8 +180,8 @@ namespace Ryujinx.Ava.Utilities
             /// <summary>
             /// A delegate factory you can use to always return the specified
             /// <paramref name="formattedValue"/> in a <see cref="PlayReportValueFormatter"/>.
-            /// <param name="formattedValue">The string to always return for this delegate instance.</param>
             /// </summary>
+            /// <param name="formattedValue">The string to always return for this delegate instance.</param>
             public static PlayReportValueFormatter AlwaysReturns(string formattedValue) => _ => formattedValue;
         }
     }