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"); }