diff --git a/src/Tgstation.Server.Host/Components/Instance.cs b/src/Tgstation.Server.Host/Components/Instance.cs
index 0e448251b0..a8b9a40721 100644
--- a/src/Tgstation.Server.Host/Components/Instance.cs
+++ b/src/Tgstation.Server.Host/Components/Instance.cs
@@ -452,7 +452,7 @@ namespace Tgstation.Server.Host.Components
// synch if necessary
if (repositorySettings.AutoUpdatesSynchronize!.Value && startSha != repo.Head && (shouldSyncTracked || repositorySettings.PushTestMergeCommits!.Value))
{
- var pushedOrigin = await repo.Sychronize(
+ var pushedOrigin = await repo.Synchronize(
NextProgressReporter("Synchronize"),
repositorySettings.AccessUser,
repositorySettings.AccessToken,
diff --git a/src/Tgstation.Server.Host/Components/Repository/IRepository.cs b/src/Tgstation.Server.Host/Components/Repository/IRepository.cs
index 795e264609..65bcd1d61e 100644
--- a/src/Tgstation.Server.Host/Components/Repository/IRepository.cs
+++ b/src/Tgstation.Server.Host/Components/Repository/IRepository.cs
@@ -151,7 +151,7 @@ namespace Tgstation.Server.Host.Components.Repository
/// If any events created should be marked as part of the deployment pipeline.
/// The for the operation.
/// A resulting in if commits were pushed to the tracked origin reference, otherwise.
- ValueTask Sychronize(
+ ValueTask Synchronize(
JobProgressReporter progressReporter,
string? username,
string? password,
diff --git a/src/Tgstation.Server.Host/Components/Repository/Repository.cs b/src/Tgstation.Server.Host/Components/Repository/Repository.cs
index c083dfdde6..8b44031766 100644
--- a/src/Tgstation.Server.Host/Components/Repository/Repository.cs
+++ b/src/Tgstation.Server.Host/Components/Repository/Repository.cs
@@ -613,7 +613,7 @@ namespace Tgstation.Server.Host.Components.Repository
}
///
- public async ValueTask Sychronize(
+ public async ValueTask Synchronize(
JobProgressReporter progressReporter,
string username,
string password,
diff --git a/src/Tgstation.Server.Host/Components/Repository/RepositoryUpdateService.cs b/src/Tgstation.Server.Host/Components/Repository/RepositoryUpdateService.cs
index 130718f9e5..4da69c51af 100644
--- a/src/Tgstation.Server.Host/Components/Repository/RepositoryUpdateService.cs
+++ b/src/Tgstation.Server.Host/Components/Repository/RepositoryUpdateService.cs
@@ -271,7 +271,7 @@ namespace Tgstation.Server.Host.Components.Repository
await UpdateRevInfo();
if (fastForward.Value)
{
- await repo.Sychronize(
+ await repo.Synchronize(
NextProgressReporter("Sychronize"),
currentModel.AccessUser,
currentModel.AccessToken,
@@ -330,7 +330,7 @@ namespace Tgstation.Server.Host.Components.Repository
updateSubmodules,
false,
cancellationToken);
- await repo.Sychronize(
+ await repo.Synchronize(
NextProgressReporter("Synchronize"),
currentModel.AccessUser,
currentModel.AccessToken,
@@ -545,7 +545,7 @@ namespace Tgstation.Server.Host.Components.Repository
var currentHead = repo.Head;
if (currentModel.PushTestMergeCommits.Value && (startSha != currentHead || (postUpdateSha != null && postUpdateSha != currentHead)))
{
- await repo.Sychronize(
+ await repo.Synchronize(
NextProgressReporter("Synchronize"),
currentModel.AccessUser,
currentModel.AccessToken,