We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b06d14f commit 810568eCopy full SHA for 810568e
src/App.axaml.cs
@@ -492,11 +492,11 @@ private void Check4Update(bool manually = false)
492
{
493
try
494
495
- // Fetch lastest release information.
+ // Fetch latest release information.
496
var client = new HttpClient() { Timeout = TimeSpan.FromSeconds(5) };
497
var data = await client.GetStringAsync("https://sourcegit-scm.github.io/data/version.json");
498
499
- // Parse json into Models.Version.
+ // Parse JSON into Models.Version.
500
var ver = JsonSerializer.Deserialize(data, JsonCodeGen.Default.Version);
501
if (ver == null)
502
return;
0 commit comments