Skip to content

Fix broken documentation links as reported in #10465 #10494

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/docs/reference/enums/desugarEnums.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ map into `case class`es or `val`s.
case C(ps) extends P1, ..., Pn
```
are treated specially. A call `C(ts)` of the apply method is ascribed the underlying type
`P1 & ... & Pn` (dropping any [super traits](../other-new-features/mixin-traits.md))
`P1 & ... & Pn` (dropping any [transparent traits](../other-new-features/transparent-traits.md))
as long as that type is still compatible with the expected type at the point of application.
A call `t.copy(ts)` of `C`'s `copy` method is treated in the same way.

Expand Down
4 changes: 2 additions & 2 deletions docs/docs/reference/features-classification.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ Since these are additions, there's generally no migration cost for old code. An
These constructs replace existing constructs with the aim of making the language safer and simpler to use, and to promote uniformity in code style.

- [Trait Parameters](other-new-features/trait-parameters.md) replace [early initializers](dropped-features/early-initializers.md) with a more generally useful construct.
- [Given Instances](contextual/delegates.md)
- [Given Instances](contextual/givens.md)
replace implicit objects and defs, focussing on intent over mechanism.
- [Given Clauses](contextual/given-clauses.md) replace implicit parameters, avoiding their ambiguities.
- [Using Clauses](contextual/using-clauses.md) replace implicit parameters, avoiding their ambiguities.
- [Extension Methods](contextual/extension-methods.md) replace implicit classes with a clearer and simpler mechanism.
- [Opaque Type Aliases](other-new-features/opaques.md) replace most uses
of value classes while guaranteeing absence of boxing.
Expand Down