Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Fixed inheritdoc issue in Akka.Streams.Implementation.StreamLayout.cs #5575

Merged
merged 1 commit into from
Feb 4, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/core/Akka.Streams/Implementation/StreamLayout.cs
Original file line number Diff line number Diff line change
Expand Up @@ -877,7 +877,7 @@ public virtual IModule Nest()
/// <returns>TBD</returns>
public abstract IModule WithAttributes(Attributes attributes);

/// <inheritdoc/>

public int CompareTo(IModule other) => GetHashCode().CompareTo(other.GetHashCode());
}

Expand Down Expand Up @@ -1087,7 +1087,7 @@ public override IModule WithAttributes(Attributes attributes)
return this;
}

/// <inheritdoc/>

public override string ToString() => $"{GetHashCode()} copy of {CopyOf}";
}

Expand Down Expand Up @@ -1202,7 +1202,7 @@ public static CompositeModule Create(Module module, Shape shape)
);
}

/// <inheritdoc/>

public override string ToString()
{
return $"\n CompositeModule [{GetHashCode()}%08x]" +
Expand Down Expand Up @@ -1448,7 +1448,7 @@ public override IModule WithAttributes(Attributes attributes)
new FusedModule(SubModules, Shape, Downstreams, Upstreams, MaterializedValueComputation, attributes,
Info);

/// <inheritdoc/>

public override string ToString()
{
return $"\n Name: {Attributes.GetNameOrDefault("unnamed")}" +
Expand Down