Skip to content
Closed
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
2 changes: 1 addition & 1 deletion src/ModelContextProtocol.Analyzers/EquatableArray.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace ModelContextProtocol.Analyzers;
/// <param name="source">The source to enumerate and wrap.</param>
public EquatableArray(IEnumerable<T> source) => _array = source.ToArray();

/// <param name="source">The source to wrap.</param>
/// <param name="array">The source to wrap.</param>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ruyut, per my comment at #1189 (review), I'm going to close this PR. I appreciate your interest in contributing, but please batch up any such comment/doc one-word changes into a single PR rather than one PR per change. Thanks.

public EquatableArray(T[] array) => _array = array;

/// <summary>Gets a reference to an item at a specified position within the array.</summary>
Expand Down
Loading