Skip to content

Commit bb71a9a

Browse files
fix(doc): fix broken links (#43314)
### What does this PR do? Fix some links in the doc/dev readme. ### Motivation Files were moved but the links were not updated. ### Describe how you validated your changes ### Additional Notes Co-authored-by: nicolas.schweitzer <[email protected]>
1 parent 55bcde5 commit bb71a9a

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

docs/dev/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ This guide will help you to develop and contribute code to the project.
1313
* [Caveats][caveats]
1414
* [Contributing][contributing]
1515
* [Legal][legal]
16-
* [Tools](tools.md) to troubleshoot a running Agent
16+
* [Tools][tools] to troubleshoot a running Agent
1717
* Advice / Style Guide
18-
* * [Logger best practices](logger.md)
18+
* * [Logger best practices][logging]
1919

2020
## How to contribute
2121

@@ -24,9 +24,10 @@ This guide will help you to develop and contribute code to the project.
2424

2525

2626
[legal]: legal.md
27-
[testing]: agent_tests.md
28-
[memory]: agent_memory.md
27+
[testing]: ../public/guidelines/testing/test-categories.md
28+
[memory]: ../public/how-to/memory-profiling/overview.md
2929
[caveats]: caveats.md
3030
[contributing]: ../public/guidelines/contributing.md
3131
[agent-omnibus]: ../public/how-to/build/distributions.md
32-
[tools]: tools.md
32+
[tools]: ../public/how-to/debug-agents/index.md
33+
[logging]: ../public/guidelines/conventions/logging.md

docs/public/how-to/memory-profiling/overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ different runtimes, can make identifying memory issues tricky.
66

77
The Agent has three distinct memory spaces, each handled independently:
88

9-
- Go
10-
- C/C++
11-
- Python
9+
- [Go](go.md)
10+
- [C/C++](c++.md)
11+
- [Python](python.md)
1212

1313
There is tooling to dive deeper into each of these environments,
1414
but having logic flow through the boundaries defined by these runtimes and

0 commit comments

Comments
 (0)