docs(eval): fix 'Coverts' typo in RubricBasedToolUseV1Evaluator docstring#6306
Open
anxkhn wants to merge 1 commit into
Open
docs(eval): fix 'Coverts' typo in RubricBasedToolUseV1Evaluator docstring#6306anxkhn wants to merge 1 commit into
anxkhn wants to merge 1 commit into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Please ensure you have read the contribution guide before creating a pull request.
Link to Issue or Description of Change
1. Link to an existing issue (if applicable):
2. Or, if no issue exists, describe the change:
Problem:
The class docstring of
RubricBasedToolUseV1Evaluatorinsrc/google/adk/evaluation/rubric_based_tool_use_quality_v1.pyhas a typo in itsworked example: "GeoCoding Tool: Coverts a city name, address or zip code into
geographic coordinates." "Coverts" should be "Converts".
Solution:
Fix the single-word typo
Coverts->Converts. Documentation-only change, nobehavior change.
Testing Plan
This is a small documentation/typo fix (no code behavior change), which the PR
template notes does not require a testing plan. For completeness, I still ran the
evaluator's existing unit suite and it passes.
Unit Tests:
Manual End-to-End (E2E) Tests:
N/A. Documentation-only change; no runtime behavior is affected.
Checklist
Additional context
The adjacent line ("...into geographic coordinates.") was already corrected upstream
by PR #3382 ("chore: Fix spelling in src"), which fixed "cordinates" on the next
line but did not catch "Coverts". This PR closes that remaining gap.