docs: fixing multiple typos

Merge https://github.com/google/adk-python/pull/4221

### Link to Issue or Description of Change

N/A

**2. Or, if no issue exists, describe the change:**

Fixing various typos in .py files to improve quality: see commit diffs for details

**Problem:**

See above

**Solution:**
Fixing the typos

### Testing Plan

N/A

**Unit Tests:**

N/A

**Manual End-to-End (E2E) Tests:**

N/A

### 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.
- [N/A] I have commented my code, particularly in hard-to-understand areas.
- [N/A ] I have added tests that prove my fix is effective or that my feature works.
- [N/A] New and existing unit tests pass locally with my changes.
- [N/A] I have manually tested my changes end-to-end.
- [N/A ] Any dependent changes have been merged and published in downstream modules.

### Additional context

N/A

COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/4221 from didier-durand:fix-typos-e 1bcc8e05cdc116451222dd7fd7b0657745f769c1
PiperOrigin-RevId: 859332402
This commit is contained in:
Didier Durand
2026-01-21 17:33:51 -08:00
committed by Copybara-Service
parent 295b345587
commit 91ec80c606
16 changed files with 28 additions and 28 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ class BasePlugin(ABC):
callback in the chain. For example, if a plugin modifies the tool input with
before_tool_callback, the modified tool input will be passed to the
before_tool_callback of the next plugin, and further passed to the agent
callbacks if not short circuited.
callbacks if not short-circuited.
To use a plugin, implement the desired callback methods and pass an instance
of your custom plugin class to the ADK Runner.
+1 -1
View File
@@ -36,7 +36,7 @@ if TYPE_CHECKING:
class LoggingPlugin(BasePlugin):
"""A plugin that logs important information at each callback point.
This plugin helps printing all critical events in the console. It is not a
This plugin helps print all critical events in the console. It is not a
replacement of existing logging in ADK. It rather helps terminal based
debugging by showing all logs in the console, and serves as a simple demo for
everyone to leverage when developing new plugins.