Skip to content

Commit 88a5e46

Browse files
Fix doc
1 parent 57b59b3 commit 88a5e46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/docs/reference/metaprogramming/macros.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ The definition of `Expr.reduce(f)(x)` is assumed to be functionally the same as
148148
result of beta-reducing `f(x)` if `f` is a known lambda expression.
149149
`Expr.reduce` distributes applications of `Expr` over function arrows:
150150
```scala
151-
Expr.reduce(_).apply: Expr[(T1, ..., Tn) => R] => ((Expr[T1], ..., Expr[Tn]) => Expr[R])
151+
Expr.reduce(_): Expr[(T1, ..., Tn) => R] => ((Expr[T1], ..., Expr[Tn]) => Expr[R])
152152
```
153153
Its dual, let’s call it `reflect`, can be defined as follows:
154154
```scala

0 commit comments

Comments
 (0)