Skip to content

Commit

Permalink
Fixed Typo in TypeName
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed Apr 5, 2024
1 parent e0b835c commit c398a6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace HotChocolate.Types.Relay;
/// <typeparam name="T">
/// The type of the value that is being serialized.
/// </typeparam>
public abstract class CompositeNodeIdValueSerialize<T> : INodeIdValueSerializer
public abstract class CompositeNodeIdValueSerializer<T> : INodeIdValueSerializer
{
private const byte _partSeparator = (byte)':';
private static readonly Encoding _utf8 = Encoding.UTF8;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ [new BoundNodeIdValueSerializer(typeName, serializer)],
[serializer]);
}

private sealed class CompositeIdNodeIdValueSerializer : CompositeNodeIdValueSerialize<CompositeId>
private sealed class CompositeIdNodeIdValueSerializer : CompositeNodeIdValueSerializer<CompositeId>
{
protected override NodeIdFormatterResult Format(Span<byte> buffer, CompositeId value, out int written)
{
Expand Down

0 comments on commit c398a6f

Please sign in to comment.