Python: fix typos in docs and handoff docstring - #7942
Conversation
|
ZF (@feizhuzheng) please read the following Contributor License Agreement(CLA). If you agree with the CLA, please reply with the following information.
Contributor License AgreementContribution License AgreementThis Contribution License Agreement (“Agreement”) is agreed to by the party signing below (“You”),
|
There was a problem hiding this comment.
Pull request overview
Corrects four documentation typos across Python guides, Ollama documentation, and a handoff module docstring.
Changes:
- Fixes misspellings in Python development and coding guides.
- Corrects Ollama connector heading and handoff wording.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
python/packages/orchestrations/agent_framework_orchestrations/_handoff.py |
Corrects handoff docstring wording. |
python/packages/ollama/README.md |
Corrects “Connector” spelling. |
python/DEV_SETUP.md |
Corrects “packages” spelling. |
python/CODING_STANDARD.md |
Corrects “targeted” spelling. |
💡 Add a code-review agent skill for context-aware, tailored reviews. Learn more in the docs.
Problem
Four small typos in Python-side docs/comments (found while reading the docs and orchestration source; each is user-visible text, not an identifier):
python/packages/ollama/README.md— the section heading reads "Run samples with the Ollama Conector" (missing ann). The next line already spells it "connector".python/CODING_STANDARD.md— "…versus when to use a targetted cast or ignore." ->targetted->targeted.python/DEV_SETUP.md— "reinstall the venv, pacakges, dependencies…" ->pacakges->packages.python/packages/orchestrations/agent_framework_orchestrations/_handoff.py— the module docstring says "Depending of wether request info is enabled…" ->Depending on whether.Fix
Text-only corrections to the four spots above. No code, signatures, or public identifiers change.
Verification
git diffis 4 files / 4 lines, comment/doc text only.codespell; the surrounding correct spellings (e.g. the "connector" on the line below the heading) confirm the intended words.