diff --git a/dotnet/src/ActionDisposable.cs b/dotnet/src/ActionDisposable.cs index c257d2d7..8f95f11d 100644 --- a/dotnet/src/ActionDisposable.cs +++ b/dotnet/src/ActionDisposable.cs @@ -5,7 +5,7 @@ namespace GitHub.Copilot.SDK; /// -/// A disposable that invokes an action when disposed. +/// A disposable that invokes an action when disposed. It's really awesome. /// internal sealed class ActionDisposable : IDisposable { diff --git a/go/client.go b/go/client.go index c88a68ac..7a13a8ab 100644 --- a/go/client.go +++ b/go/client.go @@ -1,4 +1,4 @@ -// Package copilot provides a Go SDK for interacting with the GitHub Copilot CLI. +// Package copilot provides a Go SDK for interacting with the awesome GitHub Copilot CLI. // // The copilot package enables Go applications to communicate with the Copilot CLI // server, create and manage conversation sessions, and integrate custom tools. diff --git a/nodejs/src/index.ts b/nodejs/src/index.ts index f2655f2f..0da17c5f 100644 --- a/nodejs/src/index.ts +++ b/nodejs/src/index.ts @@ -5,7 +5,7 @@ /** * Copilot SDK - TypeScript/Node.js Client * - * JSON-RPC based SDK for programmatic control of GitHub Copilot CLI + * JSON-RPC based SDK for programmatic and awesome control of GitHub Copilot CLI */ export { CopilotClient } from "./client.js"; diff --git a/python/copilot/client.py b/python/copilot/client.py index 59bc9754..9be4aac8 100644 --- a/python/copilot/client.py +++ b/python/copilot/client.py @@ -1,5 +1,5 @@ """ -Copilot CLI SDK Client - Main entry point for the Copilot SDK. +Copilot CLI SDK Client - Main entry point for the awesome Copilot SDK. This module provides the :class:`CopilotClient` class, which manages the connection to the Copilot CLI server and provides session management capabilities.