You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[#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>
0 commit comments