Skip to content

Commit 121888c

Browse files
raveendra11raveendra11
and
raveendra11
authored
[#7201] [Improvement] fix incorrect paths for playground links (#7277)
[#7201] [Improvement] fix incorrect paths for playground links ### What changes were proposed in this pull request? This pull request fixes incorrect relative paths in a markdown link in the file: ``` docs/getting-started/playground.md ```` The original link: ```md [How to Use the Playground](./how-to-use-the-playground.md) ```` was incorrect because the target file resides in the parent directory. The link was corrected to: ```md [How to Use the Playground](../how-to-use-the-playground.md) ``` ### Why are the changes needed? The incorrect link caused documentation build warnings during CI: ``` Warning: Docs markdown link couldn't be resolved: (./how-to-use-the-playground.md) ``` Fixing this: 1. Removes the warning during the site build process. 2. Ensures that documentation links are functional and accurate. 3. Improves the developer experience and the usability of the documentation site. ### Does this PR introduce *any* user-facing change? No. ### How was this patch tested? Need to check in the CI logs --------- Co-authored-by: raveendra11 <Gurthuledu@1>
1 parent 98e94c8 commit 121888c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/getting-started/playground.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ newgrp docker
1919
You can install and run all the programs as Docker containers by using the
2020
[gravitino-playground](https://github.com/apache/gravitino-playground).
2121
For details about how to run the playground, see
22-
[how-to-use-the-playground](./how-to-use-the-playground.md)
22+
[how-to-use-the-playground](../how-to-use-the-playground.md)
2323

0 commit comments

Comments
 (0)