From f6a91d391af63cae5cb59b0105ca70a3f5770222 Mon Sep 17 00:00:00 2001 From: Didier Durand Date: Thu, 18 Dec 2025 07:31:56 +0100 Subject: [PATCH] doc: fixing some typos --- docs/community.md | 4 ++-- docs/roadmap.md | 2 +- renderers/lit/src/0.8/styles/utils.ts | 2 +- .../projects/a2a-chat-canvas/src/lib/services/chat-service.ts | 2 +- samples/client/angular/projects/orchestrator/README.md | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/community.md b/docs/community.md index 6f701e67..ed050403 100644 --- a/docs/community.md +++ b/docs/community.md @@ -9,7 +9,7 @@ A2UI is an open-source project licensed under Apache 2.0. We welcome contributio ## Community Showcase !!! info "Coming soon..." - We are considering how best to showcase community projects, examples, themes, renderers, custom components, and more. A 4 minute (or less) demo video and code sample linked in Github discussions is a great way to show off your work. + We are considering how best to showcase community projects, examples, themes, renderers, custom components, and more. A 4 minute (or less) demo video and code sample linked in GitHub discussions is a great way to show off your work. ## Project Partners @@ -39,7 +39,7 @@ Google's [A2A team](https://a2a-protocol.org/) have been core contributors to A2 There are many organizations and individuals contributing to A2UI's development. -If you have made signiciant contributions to A2UI, please submit your name to this list. +If you have made significant contributions to A2UI, please submit your name to this list. ## Code of Conduct diff --git a/docs/roadmap.md b/docs/roadmap.md index 95c89b69..6a3289a9 100644 --- a/docs/roadmap.md +++ b/docs/roadmap.md @@ -80,7 +80,7 @@ Many research projects across multiple Google teams, including integration into - Angular renderer (thanks Angular team!) - Web components (Lit) renderer (thanks Opal team & friends!) - AG UI / CopilotKit integration (thanks CopilotKit team!) -- Github public release (Apache 2.0) +- GitHub public release (Apache 2.0) ## Upcoming Milestones diff --git a/renderers/lit/src/0.8/styles/utils.ts b/renderers/lit/src/0.8/styles/utils.ts index 05003f83..3ac6e2a1 100644 --- a/renderers/lit/src/0.8/styles/utils.ts +++ b/renderers/lit/src/0.8/styles/utils.ts @@ -51,7 +51,7 @@ export function appendToAll( for (const key of Object.keys(clazz)) { const prefix = key.split("-").with(-1, "").join("-"); - // Now we have the prefix step through all iteme in the target, and + // Now we have the prefix step through all items in the target, and // replace the value in the array when we find it. for (const [tagName, classesToAdd] of Object.entries(updatedTarget)) { if (exclusions.includes(tagName)) { diff --git a/samples/client/angular/projects/a2a-chat-canvas/src/lib/services/chat-service.ts b/samples/client/angular/projects/a2a-chat-canvas/src/lib/services/chat-service.ts index c50960b0..b0d87d9c 100644 --- a/samples/client/angular/projects/a2a-chat-canvas/src/lib/services/chat-service.ts +++ b/samples/client/angular/projects/a2a-chat-canvas/src/lib/services/chat-service.ts @@ -258,7 +258,7 @@ export class ChatService { /** * Creates the agent role based on the agent card and the message response if available. * - * @param response The reponse message received from the agent. + * @param response The response message received from the agent. * @returns A new UiAgent object representing the agent that the user is chatting with. */ private createRole(response?: SendMessageSuccessResponse): UiAgent { diff --git a/samples/client/angular/projects/orchestrator/README.md b/samples/client/angular/projects/orchestrator/README.md index 57584ea1..b8bbcd41 100644 --- a/samples/client/angular/projects/orchestrator/README.md +++ b/samples/client/angular/projects/orchestrator/README.md @@ -2,7 +2,7 @@ Sample application using the Chat-Canvas component orchestrating multiple A2A and A2UI Agents. -This angular app connects to an Orchastrator Agent which takes user messages and delegates tasks to its subagents based on the assessed context. +This angular app connects to an Orchestrator Agent which takes user messages and delegates tasks to its subagents based on the assessed context. ## Prerequisites