diff --git a/src/MaaWpfGui/Helper/ConfigurationHelper.cs b/src/MaaWpfGui/Helper/ConfigurationHelper.cs
index feae5a4fe7..008d07a66f 100644
--- a/src/MaaWpfGui/Helper/ConfigurationHelper.cs
+++ b/src/MaaWpfGui/Helper/ConfigurationHelper.cs
@@ -313,7 +313,7 @@ public class ConfigurationHelper
///
/// Load configuration file
///
- /// True if succeeded, False if failed
+ /// true if succeeded, false if failed
public static bool Load()
{
EnsureConfigDirectoryExists();
diff --git a/src/MaaWpfGui/Services/Web/IHttpService.cs b/src/MaaWpfGui/Services/Web/IHttpService.cs
index b566ad311a..c321984044 100644
--- a/src/MaaWpfGui/Services/Web/IHttpService.cs
+++ b/src/MaaWpfGui/Services/Web/IHttpService.cs
@@ -97,6 +97,6 @@ public interface IHttpService
/// The URI of the file
/// On disk filename
/// File content type
- /// True if succeeded, False if failed
+ /// true if succeeded, false if failed
Task DownloadFileAsync(Uri uri, string fileName, string? contentType = null);
}