mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-18 02:10:21 +08:00
docs: fix boolean capitalization in C# documentation comments (#14599)
* Initial plan * fix: correct boolean capitalization in C# doc comments Co-authored-by: lucienshawls <82591976+lucienshawls@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: lucienshawls <82591976+lucienshawls@users.noreply.github.com>
This commit is contained in:
@@ -313,7 +313,7 @@ public class ConfigurationHelper
|
||||
/// <summary>
|
||||
/// Load configuration file
|
||||
/// </summary>
|
||||
/// <returns>True if succeeded, False if failed</returns>
|
||||
/// <returns>true if succeeded, false if failed</returns>
|
||||
public static bool Load()
|
||||
{
|
||||
EnsureConfigDirectoryExists();
|
||||
|
||||
@@ -97,6 +97,6 @@ public interface IHttpService
|
||||
/// <param name="uri">The URI of the file</param>
|
||||
/// <param name="fileName">On disk filename</param>
|
||||
/// <param name="contentType">File content type</param>
|
||||
/// <returns>True if succeeded, False if failed</returns>
|
||||
/// <returns>true if succeeded, false if failed</returns>
|
||||
Task<bool> DownloadFileAsync(Uri uri, string fileName, string? contentType = null);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user