Skip to content

Commit

Permalink
Fixed type on doc xml.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed Sep 1, 2022
1 parent d11de90 commit 71289af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Expand Up @@ -7,8 +7,7 @@ namespace HotChocolate.Execution;
/// <summary>
/// The source stream represents a stream of events from a pub/sub system.
/// </summary>
public interface ISourceStream<TMessage>
: ISourceStream
public interface ISourceStream<out TMessage> : ISourceStream
{
/// <summary>
/// Reads the subscription result from the pub/sub system.
Expand Down
Expand Up @@ -22,7 +22,7 @@ public interface IChangeTypeProvider
/// The source type.
/// </param>
/// <param name="target">
/// The traget type.
/// The target type.
/// </param>
/// <param name="root">
/// The root change type provider that has access to
Expand Down

0 comments on commit 71289af

Please sign in to comment.