fix(docs): correct typos in documentation#1452
fix(docs): correct typos in documentation#1452nil957 wants to merge 1 commit intokubestellar:mainfrom
Conversation
- Fix 'Multi-Custer' → 'Multi-Cluster' in example-scenarios.md (fixes kubestellar#1436) - Fix 'SapceMono' → 'Space Mono' in mkdocs.yml (fixes kubestellar#1429) Signed-off-by: vibeyclaw <vibeyclaw@users.noreply.github.com>
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
✅ Deploy Preview for kubestellar-docs ready!Built without sensitive environment variables
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
👋 Welcome to the KubeStellar community! 💖 Thanks and congrats 🎉 for opening your first PR here! We're excited to have you contributing. Before merge, please ensure:
📬 If you're using KubeStellar in your organization, please add your name to our Adopters list. 🙏 It really helps the project gain momentum and credibility — a small contribution back with a big impact. Resources:
A maintainer will review your PR soon. Hope you have a great time here! 🌟 ~~~~~~~~~~ 🌟 📬 If you like KubeStellar, please ⭐ star ⭐ our repo to support it! 🙏 It really helps the project gain momentum and credibility — a small contribution back with a big impact. |
|
Hi @nil957. Thanks for your PR. I'm waiting for a kubestellar member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Fixes two documentation typos that affected (1) a scenario heading/anchor and (2) MkDocs font configuration so the intended font renders.
Changes:
- Corrected “Multi-Custer” → “Multi-Cluster” in Scenario 3 heading (affects generated anchor).
- Corrected MkDocs theme font value “SapceMono” → “Space Mono”.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| docs/mkdocs.yml | Fixes the configured text font name so MkDocs Material uses the intended font. |
| docs/content/kubestellar/example-scenarios.md | Fixes a scenario heading typo, updating the visible title and generated anchor. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @@ -244,7 +244,7 @@ clusters=("$wds_context" "$wec1_context" "$wec2_context"); | |||
| done | |||
| ``` | |||
|
|
|||
There was a problem hiding this comment.
Changing the heading text will change the auto-generated anchor/slug. If any existing internal/external links relied on the previous (misspelled) anchor, they’ll now break. Consider adding a backward-compatible alias anchor (e.g., an explicit id for the heading plus a separate hidden anchor for the old slug) so both old and new links keep working.
| <a id="scenario-3-multicluster-workload-deployment-with-helm"></a> |
Summary
This PR fixes two typos in the documentation:
Issue Scenario 3 Title Has Typo : "Multi-Custer" Instead of "Multi-Cluster" #1436: Fixed 'Multi-Custer' → 'Multi-Cluster' in the Scenario 3 heading of
docs/content/kubestellar/example-scenarios.md(line 247)Issue Font Name Typo in mkdocs.yml (SapceMono instead of SpaceMono) #1429: Fixed 'SapceMono' → 'Space Mono' in
docs/mkdocs.yml(line 149)Changes Made
docs/content/kubestellar/example-scenarios.md: Corrected section heading typodocs/mkdocs.yml: Corrected font name configurationTesting
Fixes #1436
Fixes #1429