From 7c6f7eea930b6b557c0ec2d519257b285fa0026e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Bouchex=20Bellomi=C3=A9?= Date: Wed, 20 May 2026 15:50:12 +0200 Subject: [PATCH] Fixed spelling errors --- .../Clients/TfsReflectedWorkItemId.cs | 4 ++-- .../Processors/Infrastructure/ProcessorContainerOptions.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/MigrationTools.Clients.TfsObjectModel/Clients/TfsReflectedWorkItemId.cs b/src/MigrationTools.Clients.TfsObjectModel/Clients/TfsReflectedWorkItemId.cs index 650aa8e8f..2a80b34bc 100644 --- a/src/MigrationTools.Clients.TfsObjectModel/Clients/TfsReflectedWorkItemId.cs +++ b/src/MigrationTools.Clients.TfsObjectModel/Clients/TfsReflectedWorkItemId.cs @@ -46,7 +46,7 @@ public TfsReflectedWorkItemId(string ReflectedWorkItemId) : base(ReflectedWorkIt var match = ReflectedIdRegex.Match(ReflectedWorkItemId); if (match.Success) { - Log.Verbose("TfsReflectedWorkItemId: Match Sucess from {ReflectedWorkItemId}: {@ReflectedWorkItemIdObject}", ReflectedWorkItemId, this); + Log.Verbose("TfsReflectedWorkItemId: Match Success from {ReflectedWorkItemId}: {@ReflectedWorkItemIdObject}", ReflectedWorkItemId, this); _Connection = new Uri(match.Groups[1].Value); _ProjectName = match.Groups[2].Value; _WorkItemId = match.Groups[3].Value; @@ -75,4 +75,4 @@ public override string ToString() return string.Format("{0}/{1}/_workitems/edit/{2}", _Connection.ToString().TrimEnd('/'), _ProjectName, _WorkItemId); } } -} \ No newline at end of file +} diff --git a/src/MigrationTools/Processors/Infrastructure/ProcessorContainerOptions.cs b/src/MigrationTools/Processors/Infrastructure/ProcessorContainerOptions.cs index f03b80466..7e8250bf1 100644 --- a/src/MigrationTools/Processors/Infrastructure/ProcessorContainerOptions.cs +++ b/src/MigrationTools/Processors/Infrastructure/ProcessorContainerOptions.cs @@ -43,7 +43,7 @@ private void BindProcessorOptions(ProcessorContainerOptions options, string sect var processorTypeString = processorSection.GetValue(objectTypePropertyName); if (processorTypeString == null) { - Log.Fatal("Your processor at `{path}` in the config does not have a property called {objectTypePropertyName} that is required to sucessfully detect the type and load it.", processorSection.Path, objectTypePropertyName); + Log.Fatal("Your processor at `{path}` in the config does not have a property called {objectTypePropertyName} that is required to successfully detect the type and load it.", processorSection.Path, objectTypePropertyName); throw new InvalidProcessorException($"`{objectTypePropertyName}` missing"); }