Fix broken documentation links flagged by weekly link checker#4528
Open
Atishyy27 wants to merge 1 commit into
Open
Fix broken documentation links flagged by weekly link checker#4528Atishyy27 wants to merge 1 commit into
Atishyy27 wants to merge 1 commit into
Conversation
The weekly documentation link checker (issue AI-Hypercomputer#4440 and prior runs) reported two broken links: - use_vertex_ai_tensorboard.md: the Vertex AI 'set up a project' link permanently redirects; point it at the current URL (verified 200, anchor #set_up_a_project present). - data_input_grain.md: the grain.dataset.html#grain.MapDataset.shuffle anchor no longer exists after Grain's docs restructure; point the 'shuffle seed' link at the current Grain dataset tutorial, which documents .shuffle(seed=...).
Atishyy27
requested review from
A9isha,
RissyRan,
SurbhiJainUSC,
aireenmei,
bvandermoon,
darisoy,
gagika,
gobbleturk,
igorts-git,
jacoguzo,
jiangjy1982,
richjames0,
shralex and
vipannalla
as code owners
July 17, 2026 21:42
|
Caution The consumer version of Gemini Code Assist on GitHub has been sunset. All code review activity has officially ceased. |
|
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
aireenmei
approved these changes
Jul 17, 2026
aireenmei
reviewed
Jul 17, 2026
aireenmei
left a comment
Collaborator
There was a problem hiding this comment.
Thanks for the fix. Please sign CLA following the link in CLA bot message
Author
|
signed the cla, the check is green now. thanks for the quick review @aireenmei 🙏 |
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.
Description
The weekly documentation link checker has been reporting the same two broken links for several consecutive runs (most recently #4440). This PR fixes both so the check passes.
docs/guides/monitoring_and_debugging/use_vertex_ai_tensorboard.md:31— the "Vertex AI API" link (.../vertex-ai/docs/start/cloud-environment#set_up_a_project) is permanently redirected. Updated to the current URL (.../gemini-enterprise-agent-platform/machine-learning/start/cloud-environment#set_up_a_project), which returns 200 and still contains the#set_up_a_projectanchor.docs/guides/data_input_pipeline/data_input_grain.md:18— the "shuffle seed" link pointed atgrain.dataset.html#grain.MapDataset.shuffle; after Grain's documentation restructure that anchor no longer exists (the page's member list is now empty). Repointed to Grain's current dataset basics tutorial, which documents.shuffle(seed=...)and its determinism behavior — the most relevant live target.FIXES: #4440
Tests
No code change. Both replacement URLs were verified manually with
curl -L:id="set_up_a_project".Checklist