From eaafbac7ed3d243cbb8417a8604db70c7115333b Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Tue, 18 Sep 2018 20:58:27 -0400 Subject: [PATCH] Fix typo --- src/Tgstation.Server.Host/Controllers/RepositoryController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Controllers/RepositoryController.cs b/src/Tgstation.Server.Host/Controllers/RepositoryController.cs index 330d242422..d04b10b932 100644 --- a/src/Tgstation.Server.Host/Controllers/RepositoryController.cs +++ b/src/Tgstation.Server.Host/Controllers/RepositoryController.cs @@ -388,7 +388,7 @@ namespace Tgstation.Server.Host.Controllers string description = null; if (model.UpdateFromOrigin == true) if (model.Reference != null) - description = String.Format(CultureInfo.InvariantCulture, "Fetch and hard reset repsitory to origin/{0}", model.Reference); + description = String.Format(CultureInfo.InvariantCulture, "Fetch and hard reset repository to origin/{0}", model.Reference); else if (model.CheckoutSha != null) description = String.Format(CultureInfo.InvariantCulture, "Fetch and checkout {0} in repository", model.CheckoutSha); else