From 44aa82195a6fc0b697c11ad99e70408472b544f3 Mon Sep 17 00:00:00 2001 From: Jeroen Overschie Date: Sun, 2 Nov 2025 08:55:35 -0800 Subject: [PATCH] docs: fix spelling error in `response_for_auth_required` parameter docstring Merge https://github.com/google/adk-python/pull/2680 COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/2680 from dunnkers:docs/fix-spelling-error-in-parameter-docstring 39782ac73381f6aa6b5392356eb9374b0680d611 PiperOrigin-RevId: 827163203 --- src/google/adk/tools/authenticated_function_tool.py | 2 +- src/google/adk/tools/base_authenticated_tool.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/google/adk/tools/authenticated_function_tool.py b/src/google/adk/tools/authenticated_function_tool.py index 67cc5885..01e44ed0 100644 --- a/src/google/adk/tools/authenticated_function_tool.py +++ b/src/google/adk/tools/authenticated_function_tool.py @@ -58,7 +58,7 @@ class AuthenticatedFunctionTool(FunctionTool): the tool doesn't configure any credentials (auth_config.raw_auth_credential is missing) or the credentials configured is not enough to authenticate the tool (e.g. an OAuth - client id and client secrect is configured.) and needs client input + client id and client secret are configured) and needs client input (e.g. client need to involve the end user in an oauth flow and get back the oauth response.) """ diff --git a/src/google/adk/tools/base_authenticated_tool.py b/src/google/adk/tools/base_authenticated_tool.py index 4858e495..043bc872 100644 --- a/src/google/adk/tools/base_authenticated_tool.py +++ b/src/google/adk/tools/base_authenticated_tool.py @@ -57,7 +57,7 @@ class BaseAuthenticatedTool(BaseTool): the tool doesn't configure any credentials (auth_config.raw_auth_credential is missing) or the credentials configured is not enough to authenticate the tool (e.g. an OAuth - client id and client secrect is configured.) and needs client input + client id and client secret are configured) and needs client input (e.g. client need to involve the end user in an oauth flow and get back the oauth response.) """