Skip to content

Commit

Permalink
Fix PipelineNameComparer example in documentation (#1931)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwagon authored Jan 26, 2024
1 parent 7c8a6fc commit 78deba5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/advanced/dependency-injection.md
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ public sealed class PipelineNameComparer : IEqualityComparer<MyPipelineKey>
{
public bool Equals(MyPipelineKey x, MyPipelineKey y) => x.PipelineName == y.PipelineName;

public int GetHashCode(MyPipelineKey obj) => (obj.PipelineName, obj.InstanceName).GetHashCode();
public int GetHashCode(MyPipelineKey obj) => obj.PipelineName.GetHashCode();
}
```
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion src/Snippets/Docs/DependencyInjection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ public sealed class PipelineNameComparer : IEqualityComparer<MyPipelineKey>
{
public bool Equals(MyPipelineKey x, MyPipelineKey y) => x.PipelineName == y.PipelineName;

public int GetHashCode(MyPipelineKey obj) => (obj.PipelineName, obj.InstanceName).GetHashCode();
public int GetHashCode(MyPipelineKey obj) => obj.PipelineName.GetHashCode(StringComparison.Ordinal);
}

#endregion
Expand Down

0 comments on commit 78deba5

Please sign in to comment.