From 810568e1793235ee762cd3ef48bfde167ae23501 Mon Sep 17 00:00:00 2001 From: leo Date: Thu, 9 Jan 2025 18:14:11 +0800 Subject: [PATCH] fix: typo --- src/App.axaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.axaml.cs b/src/App.axaml.cs index f565fe9d..9fac35a6 100644 --- a/src/App.axaml.cs +++ b/src/App.axaml.cs @@ -492,11 +492,11 @@ namespace SourceGit { try { - // Fetch lastest release information. + // Fetch latest release information. var client = new HttpClient() { Timeout = TimeSpan.FromSeconds(5) }; var data = await client.GetStringAsync("https://sourcegit-scm.github.io/data/version.json"); - // Parse json into Models.Version. + // Parse JSON into Models.Version. var ver = JsonSerializer.Deserialize(data, JsonCodeGen.Default.Version); if (ver == null) return;