Skip to content

Commit a02e605

Browse files
authored
Merge pull request #6638 from dwijnand/fix-erased-terms-links
Fix doc links to erased terms
2 parents 83788d9 + 177a0d2 commit a02e605

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed

docs/_includes/features.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ <h1 id="so-features">So, features?</h1>
7777
<td>Implemented</td>
7878
</tr>
7979
<tr>
80-
<td><a href="http://dotty.epfl.ch/docs/reference/other-new-features/erased-terms.html">Erased Terms</a></td>
80+
<td><a href="http://dotty.epfl.ch/docs/reference/metaprogramming/erased-terms.html">Erased Terms</a></td>
8181
<td>Implemented</td>
8282
</tr>
8383
<tr>

docs/blog/_posts/2018-03-05-seventh-dotty-milestone-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ The implicit evidence `ev` is only used to constrain the type parameter `X` of `
9999
can safely cast from `X` to `List[_]`. The usage of the `erased` modifier ensures that the evidence
100100
is not used and can be safely removed at compilation time.
101101

102-
For more information, visit the [Erased Terms](http://dotty.epfl.ch/docs/reference/erased-terms.html)
102+
For more information, visit the [Erased Terms](http://dotty.epfl.ch/docs/reference/metaprogramming/erased-terms.html)
103103
section of our documentation.
104104

105105
**Note**: Erased terms replace _phantom types_: they have similar semantics, but with the added

docs/docs/reference/features-classification.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ by itself a straightforward implementation of some simple macros and is at the s
175175
- [Quotes and Splices](https://dotty.epfl.ch/docs/reference/metaprogramming/macros.html) provide a principled way to express macros and staging with a unified set of abstractions.
176176
- [Typeclass derivation](https://dotty.epfl.ch/docs/reference/contextual/derivation.html) provides an in-language implementation of the `Gen` macro in Shapeless and other foundational libraries. The new implementation is more robust, efficient and easier to use than the macro.
177177
- [Implicit by-name parameters](https://dotty.epfl.ch/docs/reference/contextual/inferable-by-name-parameters.html) provide a more robust in-language implementation of the `Lazy` macro in Shapeless.
178-
- [Erased Terms](https://dotty.epfl.ch/docs/reference/other-new-features/erased-terms.html) provide a general mechanism for compile-time-only computations.
178+
- [Erased Terms](https://dotty.epfl.ch/docs/reference/metaprogramming/erased-terms.html) provide a general mechanism for compile-time-only computations.
179179

180180
**Status: not yet settled**
181181

docs/docs/reference/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ by itself a straightforward implementation of some simple macros and is at the s
126126
- [Quotes and Splices](https://dotty.epfl.ch/docs/reference/metaprogramming/macros.html) provide a principled way to express macros and staging with a unified set of abstractions.
127127
- [Typeclass derivation](https://dotty.epfl.ch/docs/reference/contextual/derivation.html) provides an in-language implementation of the `Gen` macro in Shapeless and other foundational libraries. The new implementation is more robust, efficient and easier to use than the macro.
128128
- [Implicit by-name parameters](https://dotty.epfl.ch/docs/reference/contextual/inferable-by-name-parameters.html) provide a more robust in-language implementation of the `Lazy` macro in Shapeless.
129-
- [Erased Terms](https://dotty.epfl.ch/docs/reference/other-new-features/erased-terms.html) provide a general mechanism for compile-time-only computations.
129+
- [Erased Terms](https://dotty.epfl.ch/docs/reference/metaprogramming/erased-terms.html) provide a general mechanism for compile-time-only computations.
130130

131131
## See Also
132132

docs/sidebar.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,6 @@ sidebar:
9595
url: docs/reference/other-new-features/opaques.html
9696
- title: Parameter Untupling
9797
url: docs/reference/other-new-features/parameter-untupling.html
98-
- title: Erased Terms
99-
url: docs/reference/other-new-features/erased-terms.html
10098
- title: Kind Polymorphism
10199
url: docs/reference/other-new-features/kind-polymorphism.html
102100
- title: Tupled Function

0 commit comments

Comments
 (0)