Skip to content

Commit ea8c81c

Browse files
committed
fixup me with Make experimental
1 parent 5e988e2 commit ea8c81c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/_docs/reference/contextual/right-associative-extension-methods.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ For example:
2525
(using d: D) // <-- trailingUsing
2626
def +:: [U] // <-- rightTyParams
2727
(y: Y) // <-- rightParam
28-
[V](using e: E)[W](z: Z) // <-- rest
28+
(using e: E)(z: Z) // <-- rest
2929
```
3030

3131

@@ -55,7 +55,7 @@ For instance, the `+::` method above would become
5555
(y: Y)
5656
(x: X)
5757
(using d: D)
58-
[V](using e: E)[W](z: Z)
58+
(using e: E)(z: Z)
5959
```
6060

6161
This expansion has to be kept in mind when writing right-associative extension

0 commit comments

Comments
 (0)