docs: daily quality scan fixes (2026-07-17)#374
Closed
claude[bot] wants to merge 1 commit into
Closed
Conversation
- Remove bare `import Video`/`<Video>` MDX components (CI hard-fail: import statements are blocked) in blog and devlog posts; replace with plain links to the video asset. - Fix broken internal/external doc links across blog posts (renamed guide slugs, wrong section paths, /docs/locadex, nextjs quickstart path). - Add missing language ids to bare fenced code blocks (blog, devlog). - Fix a skipped heading level (H3 before any H2) in a blog post. - Fix incorrect `context` prop name (should be `$context`) in the Next.js quickstart, to match the `<T>` reference and other quickstarts. - Fix grammar/typos: parallel structure, BCP 47 wording, missing article, German pronoun capitalization, subject-verb agreement, singular/plural mismatch, garbled WhatsApp anecdote, nonsensical example locale mapping. - Fix link-punctuation placement (period inside vs. outside brackets) in two Locadex guides. - Fill in missing `occupation` frontmatter field on two author profiles, and fix a malformed twitter URL on a third. - Add trailing period to a frontmatter description missing it. Found via a subagent-per-subsection scan of docs/en-US, blog/en-US, devlog/en-US, and authors/ against CONTRIBUTING.md conventions.
Contributor
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.
Requested by Archie McKenzie · Slack thread
Summary
Daily automated docs-quality scan of
docs/en-US,blog/en-US,devlog/en-US, andauthors/againstCONTRIBUTING.md. Fixes are conservative: CI hard-fails, broken links, malformed code fences, and clear typos only — no voice/style rewrites, no code-semantics changes.Blog (
blog/en-US)i18n-without-translation-files.mdx, and separately in devlog) used a bareimport Video from '@/components/Video'+<Video>component — imports are a CI hard-fail. After: import removed, replaced with a plain markdown link to the video asset.gt-next.mdxhad a code fence with no language id and jumped from the (implicit) H1 straight to an H3 heading, skipping H2. After: fence taggedbash, headings promoted to the correct H2/H3 levels.multilingual-nextjs-seo.mdxandplurals.mdx. After: taggedtext.best-localization-software.mdxlinked/docs/locadex(doesn't exist) and/docs/next/quickstart(no such section). After: corrected to/docs/platform/locadexand/docs/react/nextjs-quickstart.nextjs-i18n-code-is-the-source-of-truth.mdxhad five broken doc links (renamed guide slugs, wrong CLI/Next.js paths, a nonexistent guide). After: corrected to the real pages; the one link with no confirmed replacement was unlinked rather than left broken.branch_vs_ternary.mdxhad a garbled anecdote ("translating 'crop' to 'crop'"). After: clarified to state the actual mix-up (the agricultural sense of "crop" instead of the image-editing sense).Devlog (
devlog/en-US)import Video+<Video>pattern. After: same fix as above (plain link).gt-i18n_v0_1_0.mdxhad three list items linking to a bare#(empty/placeholder anchor). After: unlinked to plain inline code.gt-next_v6_3_0.mdx,gt-react_v10_18_0.mdx). After: taggedtext.Docs (
docs/en-US)react/nextjs-quickstart.mdx: the FAQ example usedcontextinstead of the real$contextprop — now matches the<T>reference and every other quickstart.platform/core/guides: fixed a broken parallel-structure sentence intranslating-files.mdx, and an acronym typo ("Best Current Practices" → "Best Current Practice" for BCP) inlocale-codes.mdx.platform/core/reference/gt-class/constructor.mdx: acustomMappingexample mappeden-USto the name "Mandarin" and a French flag emoji — replaced with a coherentzh→ Mandarin/🇨🇳 example.platform/dashboard/guides: fixed a missing article + inconsistent "buildtime"/"build-time" wording inmanaging-billing.mdx; fixed an uncapitalized German formal pronoun ("sie" → "Sie") and a singular/plural mismatch inadding-translation-context.mdx.platform/locadex/guides: fixed link punctuation (period was inside the link brackets instead of after) in two guides.overview: added a missing trailing period to a frontmatter description; fixed a subject-verb agreement typo in the embeddedAGENTS.mdtemplate on the "For coding agents" page.Authors (
authors/)occupationfield to two author profiles (jackie.mdx,default.mdx).archie.mdxthat pointed to a specific tweet's photo view instead of the profile.How
26 files touched, all
.mdxcontent edits — no code, config, or build changes. Full list:authors/{archie,default,jackie}.mdx;blog/en-US/{best-localization-software,branch_vs_ternary,gt-next,i18n-without-translation-files,multilingual-nextjs-seo,nextjs-i18n-code-is-the-source-of-truth,plurals}.mdx;devlog/en-US/{gt-i18n_v0_1_0,gt-next_v6_3_0,gt-react_v10_15_0,gt-react_v10_18_0,gt-react_v10_19_0,react-core-linter_v0_1_0}.mdx;docs/en-US/overview/{for-coding-agents,key-concepts}.mdx;docs/en-US/platform/core/guides/{locale-codes,translating-files}.mdx;docs/en-US/platform/core/reference/gt-class/constructor.mdx;docs/en-US/platform/dashboard/guides/{adding-translation-context,managing-billing}.mdx;docs/en-US/platform/locadex/guides/{configuring-workflows,managing-languages}.mdx;docs/en-US/react/nextjs-quickstart.mdx.Generated by Claude Code