raveendra11 opened a new pull request, #7277: URL: https://github.com/apache/gravitino/pull/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 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
