From c49bec185a8aa4c4a42e744ee8884ce5d0ba8613 Mon Sep 17 00:00:00 2001 From: cryo Date: Wed, 2 Jul 2025 09:31:58 +0000 Subject: [PATCH] mcp/streamable: fix typos --- mcp/streamable.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mcp/streamable.go b/mcp/streamable.go index da950fb2..db3add85 100644 --- a/mcp/streamable.go +++ b/mcp/streamable.go @@ -223,13 +223,13 @@ type StreamableServerTransport struct { // TODO(rfindley): clean up once requests are handled. requestStreams map[JSONRPCID]streamID - // outstandingRequests tracks the set of unanswered incoming RPCs for each logical + // streamRequests tracks the set of unanswered incoming RPCs for each logical // stream. // // When the server has responded to each request, the stream should be // closed. // - // Lifecycle: outstandingRequests values persist as until the requests have been + // Lifecycle: streamRequests values persist as until the requests have been // replied to by the server. Notably, NOT until they are sent to an HTTP // response, as delivery is not guaranteed. streamRequests map[streamID]map[JSONRPCID]struct{}