From 928982e2af30a5a06519fe5ec9721f66df4c5cfb Mon Sep 17 00:00:00 2001 From: Dominion Date: Mon, 5 Jun 2023 10:48:12 -0400 Subject: [PATCH] Fix a typo --- .../Components/Repository/LibGit2RepositoryFactory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Components/Repository/LibGit2RepositoryFactory.cs b/src/Tgstation.Server.Host/Components/Repository/LibGit2RepositoryFactory.cs index 55c0f7f445..65af4f9721 100644 --- a/src/Tgstation.Server.Host/Components/Repository/LibGit2RepositoryFactory.cs +++ b/src/Tgstation.Server.Host/Components/Repository/LibGit2RepositoryFactory.cs @@ -46,7 +46,7 @@ namespace Tgstation.Server.Host.Components.Repository var repo = await Task.Factory.StartNew( () => { - logger.LogTrace("Creating libgit2 repostory at {repoPath}...", path); + logger.LogTrace("Creating libgit2 repository at {repoPath}...", path); return new LibGit2Sharp.Repository(path); }, cancellationToken,