Skip to content

Commit c48864a

Browse files
Merge pull request #5873 from Jentsch/fix-links
Fix some broken links in documentation
2 parents 3e6fc39 + 633e661 commit c48864a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/docs/reference/changed-features/eta-expansion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ rather than `next _`.
3535
The reason for excluding nullary methods from automatic eta expansion
3636
is that Scala implicitly inserts the `()` argument, which would
3737
conflict with eta expansion. Automatic `()` insertion is
38-
[limited](../dropped/auto-apply.md) in Dotty, but the fundamental ambiguity
38+
[limited](../dropped-features/auto-apply.md) in Dotty, but the fundamental ambiguity
3939
remains.
4040

4141
[More details](eta-expansion-spec.html)

docs/docs/reference/dropped-features/early-initializers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ Early initializers of the form
88
class C extends { ... } with SuperClass ...
99

1010
have been dropped. They were rarely used, and mostly to compensate for the lack of
11-
[trait parameters](../trait-parameters.md), which are now directly supported in Dotty.
11+
[trait parameters](../other-new-features/trait-parameters.md), which are now directly supported in Dotty.

docs/docs/reference/other-new-features/inline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: doc-page
33
title: Inline
44
---
55

6-
`inline` is a new [soft modifier](./soft-modifier.html) that guarantees that a definition will be inline at the point of use. Example:
6+
`inline` is a new [soft modifier](../soft-modifier.html) that guarantees that a definition will be inline at the point of use. Example:
77

88
object Config {
99
inline val logging = false

docs/docs/reference/other-new-features/principled-meta-programming.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ and adding quoted variants `'(...)`, `'{...}` and `'[...]` to the
624624
| ‘'’ ‘[’ Type ‘]’
625625

626626
Syntax changes are given relative to the [Dotty reference
627-
grammar](../internal/syntax.md).
627+
grammar](../../internals/syntax.md).
628628

629629
An alternative syntax would treat `'` as a separate operator. This
630630
would be attractive since it enables quoting single identifiers as
@@ -764,7 +764,7 @@ environments and terms.
764764
Es |- 't: expr T
765765

766766
The meta theory of a slightly simplified variant 2-stage variant of this calculus
767-
is studied [separately](simple-smp.md).
767+
is studied [separately](../simple-smp.md).
768768

769769
## Going Further
770770

0 commit comments

Comments
 (0)