From 42317f849f2d9dd96db83e73758a56ef3825bcb8 Mon Sep 17 00:00:00 2001 From: Hiroaki Sano Date: Tue, 16 Dec 2025 22:32:37 -0800 Subject: [PATCH] fix: Add missing space in README.md Merge https://github.com/google/adk-python/pull/3939 ### Link to Issue or Description of Change **1. Link to an existing issue (if applicable):** n/a **2. Or, if no issue exists, describe the change:** **Problem:** In the Community Repo section of README.md, there was a missing space between the markdown link `[adk-python-community repo](...)` and the word `that`, causing the text to render as `repo](...)that` instead of `repo](...) that`. **Solution:** Add a single space between the closing parenthesis of the markdown link and the word "that" to fix the typo. ### Testing Plan **Unit Tests:** This is a small documentation/typo fix. No code changes were made. **Manual End-to-End (E2E) Tests:** I verified that the markdown renders correctly with proper spacing between the link and following text. ### Checklist - [x] I have read the [CONTRIBUTING.md](https://github.com/google/adk-python/blob/main/CONTRIBUTING.md) document. - [x] I have performed a self-review of my own code. - [x] I have commented my code, particularly in hard-to-understand areas. - [x] I have added tests that prove my fix is effective or that my feature works. - [x] New and existing unit tests pass locally with my changes. - [x] I have manually tested my changes end-to-end. - [x] Any dependent changes have been merged and published in downstream modules. ### Additional context This is a minor typo fix in the README.md file. No functional changes. Co-authored-by: Xiang (Sean) Zhou COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/3939 from hiroakis:fix-readme-typo f4e8014367961b55124da57b5c910890a287b2af PiperOrigin-RevId: 845595505 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9046cc49..f620ee86 100644 --- a/README.md +++ b/README.md @@ -158,7 +158,7 @@ We welcome contributions from the community! Whether it's bug reports, feature r ## Community Repo -We have [adk-python-community repo](https://github.com/google/adk-python-community)that is home to a growing ecosystem of community-contributed tools, third-party +We have [adk-python-community repo](https://github.com/google/adk-python-community) that is home to a growing ecosystem of community-contributed tools, third-party service integrations, and deployment scripts that extend the core capabilities of the ADK.