Skip to content

Commit 741eab7

Browse files
authored
Fix malformed XML doc on McpServerPrimitiveCollection.Contains (#1348)
1 parent 139745d commit 741eab7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ModelContextProtocol.Core/Server/McpServerPrimitiveCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public virtual bool TryGetPrimitive(string name, [NotNullWhen(true)] out T? prim
120120

121121
/// <summary>Checks if a specific primitive is present in the collection of primitives.</summary>
122122
/// <param name="primitive">The primitive to search for in the collection.</param>
123-
/// <see langword="true"/> if the primitive was found in the collection and returned; <see langword="false"/> if it wasn't found.
123+
/// <returns><see langword="true"/> if the primitive was found in the collection and returned; <see langword="false"/> if it wasn't found.</returns>
124124
/// <exception cref="ArgumentNullException"><paramref name="primitive"/> is <see langword="null"/>.</exception>
125125
public virtual bool Contains(T primitive)
126126
{

0 commit comments

Comments
 (0)