From eaad685d0631d791931d790f5cf5056c5ee09f0a Mon Sep 17 00:00:00 2001 From: leo Date: Thu, 15 Aug 2024 10:43:38 +0800 Subject: [PATCH] fix: typo --- src/ViewModels/CommitDetail.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ViewModels/CommitDetail.cs b/src/ViewModels/CommitDetail.cs index 6afbf226..33a96022 100644 --- a/src/ViewModels/CommitDetail.cs +++ b/src/ViewModels/CommitDetail.cs @@ -115,7 +115,7 @@ namespace SourceGit.ViewModels else if (url.StartsWith("https://gitee.com/", StringComparison.Ordinal)) WebLinks.Add(new Models.CommitLink() { Name = "Gitee", URLPrefix = $"{url}/commit/" }); else if (url.StartsWith("https://bitbucket.org/", StringComparison.Ordinal)) - WebLinks.Add(new Models.CommitLink() { Name = "Bithbucket", URLPrefix = $"{url}/commits/" }); + WebLinks.Add(new Models.CommitLink() { Name = "Bitbucket", URLPrefix = $"{url}/commits/" }); } } }