Skip to content

Commit f0f1523

Browse files
authored
Fixed spelling errors (#3141)
Fixed 2 spelling errors <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit ## Release Notes * **Bug Fixes** * Fixed spelling errors in error and status log messages to improve clarity and professionalism when reviewing system logs. <!-- review_stack_entry_start --> [![Review Change Stack](https://storage.googleapis.com/coderabbit_public_assets/review-stack-in-coderabbit-ui.svg)](https://app.coderabbit.ai/change-stack/nkdAgility/azure-devops-migration-tools/pull/3141?utm_source=github_walkthrough&utm_medium=github&utm_campaign=change_stack) <!-- review_stack_entry_end --> <!-- end of auto-generated comment: release notes by coderabbit.ai -->
2 parents 119b68f + 5ec309c commit f0f1523

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/MigrationTools.Clients.TfsObjectModel/Clients/TfsReflectedWorkItemId.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public TfsReflectedWorkItemId(string ReflectedWorkItemId) : base(ReflectedWorkIt
4646
var match = ReflectedIdRegex.Match(ReflectedWorkItemId);
4747
if (match.Success)
4848
{
49-
Log.Verbose("TfsReflectedWorkItemId: Match Sucess from {ReflectedWorkItemId}: {@ReflectedWorkItemIdObject}", ReflectedWorkItemId, this);
49+
Log.Verbose("TfsReflectedWorkItemId: Match Success from {ReflectedWorkItemId}: {@ReflectedWorkItemIdObject}", ReflectedWorkItemId, this);
5050
_Connection = new Uri(match.Groups[1].Value);
5151
_ProjectName = match.Groups[2].Value;
5252
_WorkItemId = match.Groups[3].Value;
@@ -75,4 +75,4 @@ public override string ToString()
7575
return string.Format("{0}/{1}/_workitems/edit/{2}", _Connection.ToString().TrimEnd('/'), _ProjectName, _WorkItemId);
7676
}
7777
}
78-
}
78+
}

src/MigrationTools/Processors/Infrastructure/ProcessorContainerOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ private void BindProcessorOptions(ProcessorContainerOptions options, string sect
4343
var processorTypeString = processorSection.GetValue<string>(objectTypePropertyName);
4444
if (processorTypeString == null)
4545
{
46-
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);
46+
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);
4747
throw new InvalidProcessorException($"`{objectTypePropertyName}` missing");
4848
}
4949

0 commit comments

Comments
 (0)