Skip to content

Commit af596dd

Browse files
committed
chore: typo fix
Signed-off-by: Vincent Biret <[email protected]>
1 parent b17b7d8 commit af596dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Microsoft.OpenApi/Services/OpenApiWorkspace.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ public class OpenApiWorkspace
1818
{
1919
private readonly Dictionary<string, Uri> _documentsIdRegistry = new();
2020
private readonly Dictionary<Uri, Stream> _artifactsRegistry = new();
21-
private readonly Dictionary<Uri, IOpenApiReferenceable> _IOpenApiReferenceableRegistry = new(new UriWithFragmentEquailityComparer());
21+
private readonly Dictionary<Uri, IOpenApiReferenceable> _IOpenApiReferenceableRegistry = new(new UriWithFragmentEqualityComparer());
2222

23-
private class UriWithFragmentEquailityComparer : IEqualityComparer<Uri>
23+
private sealed class UriWithFragmentEqualityComparer : IEqualityComparer<Uri>
2424
{
2525
public bool Equals(Uri? x, Uri? y)
2626
{

0 commit comments

Comments
 (0)