@@ -36,7 +36,7 @@ session.
3636 [ ` ClientSession ` ] ( https://pkg.go.dev/github.com/modelcontextprotocol/go-sdk/mcp#ClientSession ) .
3737 This session is initialized during the ` Connect ` method, and provides methods
3838 to communicate with the server peer.
39- - A ` Server ` is a logical MCP server, configure with various
39+ - A ` Server ` is a logical MCP server, configured with various
4040 [ ` ServerOptions ` ] ( https://pkg.go.dev/github.com/modelcontextprotocol/go-sdk/mcp#ServerOptions ) .
4141- When a server is connected to a client using
4242 [ ` Server.Connect ` ] ( https://pkg.go.dev/github.com/modelcontextprotocol/go-sdk/mcp#Server.Connect ) ,
@@ -53,7 +53,7 @@ session, and a `Wait` method to await session termination by the peer. Typically
5353it is the client's responsibility to end the session.
5454
5555``` go
56- func Example_lifeCycle () {
56+ func Example_lifecycle () {
5757 ctx := context.Background ()
5858
5959 // Create a client and server.
@@ -119,7 +119,7 @@ newline-delimited JSON over its stdin/stdout.
119119
120120** Client-side** : the client side of the ` stdio ` transport is implemented by
121121[ ` CommandTransport ` ] ( https://pkg.go.dev/github.com/modelcontextprotocol/go-sdk/mcp#CommandTransport ) ,
122- which starts the a given ` exec.Cmd ` as a subprocess and communicates over its
122+ which starts the a ` exec.Cmd ` as a subprocess and communicates over its
123123stdin/stdout.
124124
125125** Server-side** : the server side of the ` stdio ` transport is implemented by
@@ -144,7 +144,7 @@ pass it an `mcp.Server`:
144144
145145``` go
146146func ExampleStreamableHTTPHandler () {
147- // Create a new stramable handler, using the same MCP server for every request.
147+ // Create a new streamable handler, using the same MCP server for every request.
148148 //
149149 // Here, we configure it to serves application/json responses rather than
150150 // text/event-stream, just so the output below doesn't use random event ids.
0 commit comments