Skip to content

Commit b79908b

Browse files
committed
docs: fix invalid links
1 parent 12b4e0e commit b79908b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/_docs/contributing/architecture/types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ format corresponding to the backing data structure, e.g. `ExprType(...)`
1111
corresponds to `class ExprType`, defined in [Types.scala].
1212

1313
> You can inspect the representation of any type using the [dotty.tools.printTypes][DottyTypeStealer]
14-
> script, its usage and integration into your debugging workflow is [described here](../issues/inspection.md).
14+
> script, its usage and integration into your debugging workflow is [described here](../debugging/inspection.md).
1515
1616
### Types of Definitions
1717

docs/_docs/contributing/debugging/debugging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ that you're having issues with. This can be just inspecting the trees of your
99
code or stepping through the dotty codebase with a Debugger.
1010

1111
The following sections will help you with this:
12-
- [Debugging with your IDE](./ide-debugging.md.md)
12+
- [Debugging with your IDE](./ide-debugging.md)
1313
- [How to Inspect Values](./inspection.md)
1414
- [Other Debugging Techniques](./other-debugging.md)

docs/_docs/contributing/issues/cause.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ This flag forces a stack trace to be printed each time an error happens, from th
6969
Analysing the trace will give you a clue about the objects involved in producing
7070
the error. For example, you can add some debug statements before the error is
7171
issued to discover the state of the compiler. [See some useful ways to debug
72-
values.](./debugging/inspection.md)
72+
values.](../debugging/inspection.md)
7373

7474
### Where was a particular object created?
7575

docs/_docs/contributing/issues/reproduce.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ not be passed). This saves typing the same arguments each time you want to use t
133133
134134
The following `launch.iss` file is an example of how you can use multiline
135135
commands as a template for solving issues that [run compiled
136-
code](../issues/testing.md#checking-program-output). It demonstrates configuring
136+
code](../testing.md#checking-program-output). It demonstrates configuring
137137
the `scala3/scalac` command using compiler flags, which are commented out. Put
138138
your favourite flags there for quick usage.
139139

0 commit comments

Comments
 (0)