docs: fix typos in Kandinsky 5.0 video docs - #14345
Open
iridescentWen wants to merge 1 commit into
Open
Conversation
- `qualty` -> `quality` - `infered` -> `inferred` (x3) - `bakend` -> `backend` (x3, in the trailing `# <--- Set attention bakend to Flex` comments; the actual `set_attention_backend` calls were already spelled correctly) - `wothout` -> `without` Prose and comments only, no code or behavior changes.
stevhliu
approved these changes
Jul 31, 2026
stevhliu
left a comment
Member
There was a problem hiding this comment.
Thanks for fixing the typos, feel free to include others here as well!
Contributor
|
Hi @iridescentWen, thanks for the PR! It does not appear to link an issue it fixes. If this PR addresses an existing issue, please add a closing keyword (e.g. |
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.
What does this PR do?
Fixes spelling mistakes in the Kandinsky 5.0 Video docs. Prose and comments only — no code or behavior changes.
qualty→qualityinfered→inferredbakend→backendwothout→withoutThe
bakendhits are all in the trailing# <--- Set attention bakend to Flexcomments; the actualset_attention_backend(...)calls were already spelled correctly.Docs-only: 1 file, +7/-7.
Verification
No Python source touched (
git diff --name-onlyshows only the.md), so there is nothing formake qualityto check. Instead:codespellon the file is clean after the change (7 hits before, 0 after).main(310 lines, 13 fences — odd because of the inline```guidance_scale=1.0```on the distilled-model line), so the markdown structure is untouched.```pythonblocks still parse withast.parse.Self-review notes
Ran the
self-reviewskill against.ai/review-rules.md(plusAGENTS.md) ongit diff upstream/main...HEAD.Blocking issues: none.
Non-blocking issues: none.
Dead code: N/A — docs-only diff, no code paths added or removed.
Notes / deliberate calls:
Kept this PR to spelling only. While checking the file I noticed the runnable examples have separate problems that are not addressed here — happy to open an issue or a follow-up PR if you want them fixed:
...I2V-Pro...checkpoint withKandinsky5T2VPipeline, callsload_image(...)without importing it, and never passes the resultingimagetopipe(...)even thoughimageis the first (required) parameter ofKandinsky5I2VPipeline.__call__.pipe = ...and then callpipeline.transformer.../pipeline.enable_model_cpu_offload(), which is aNameErroron copy-paste.I left all of it alone to keep this a single-purpose spelling diff rather than mixing a correctness fix into it.
Scoped to this one file.
codespellreports ~125 hits across the English docs andsrc/, e.g.sequencially×15 inmodular_pipelines/qwenimage/denoise.pyandexlucdeincomponents_manager.py. Those want a separate systematic sweep, not a bundle with this one. Let me know if a repo-wide pass would be welcome.Left the two prose
pipeline.enable_model_cpu_offload()mentions as-is. They read as "call this method" rather than as copy-paste code, and renaming them is out of scope for a spelling fix.Verdict: READY
Before submitting
self-reviewskill on the diff?AI disclosure: this PR was prepared with Claude Code. I verified every change myself and checked each spelling against the surrounding text.
Who can review?
@stevhliu — docs-only spelling fix.