Skip to content

Commit 00f9c92

Browse files
authored
Update pattern-matching.md
Fix in-page links
1 parent 473897c commit 00f9c92

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/_docs/reference/changed-features/pattern-matching.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def unapplySeq(x: T): U
1818
```
1919

2020
Where `T` is an arbitrary type, if it is a subtype of the scrutinee's type `Scrut`, a [type test](../other-new-features/type-test.md) is performed before calling the method.
21-
`U` follows rules described in [Fixed Arity Extractors](#fixed-arity-extractors) and [Variadic Extractors](#variadic-extractors).
21+
`U` follows rules described in [Fixed Arity Extractors](#fixed-arity-extractors-1) and [Variadic Extractors](#variadic-extractors-1).
2222

2323
**Note:** `U` can be the type of the extractor object.
2424

@@ -43,8 +43,8 @@ def unapply(x: T): U
4343

4444
The type `U` conforms to one of the following matches:
4545

46-
- [Boolean match](#boolean-match)
47-
- [Product match](#product-match)
46+
- [Boolean match](#boolean-match-1)
47+
- [Product match](#product-match-1)
4848

4949
Or `U` conforms to the type `R`:
5050

@@ -57,8 +57,8 @@ type R = {
5757

5858
and `S` conforms to one of the following matches:
5959

60-
- [single match](#single-match)
61-
- [name-based match](#name-based-match)
60+
- [single match](#single-match-1)
61+
- [name-based match](#name-based-match-1)
6262

6363
The former form of `unapply` has higher precedence, and _single match_ has higher
6464
precedence over _name-based match_.
@@ -183,8 +183,8 @@ Where `U` has to fullfill the following:
183183

184184
1. Set `V := U`
185185
2. `V` is valid if `V` conforms to one of the following matches:
186-
- [sequence match](#sequence-match)
187-
- [product-sequence match](#product-sequence-match)
186+
- [sequence match](#sequence-match-1)
187+
- [product-sequence match](#product-sequence-match-1)
188188
3. Otherwise `U` has to conform to the type `R`:
189189
```scala
190190
type R = {

0 commit comments

Comments
 (0)