We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89f42f4 commit 03239feCopy full SHA for 03239fe
docs/docs/reference/contextual/derivation.md
@@ -200,7 +200,7 @@ implementation of `summonAll` is `inline` and uses Dotty's `summonInline` constr
200
```scala
201
202
inline def summonAll[T <: Tuple]: List[Eq[_]] = inline erasedValue[T] match {
203
- case _: Unit => Nil
+ case _: EmptyTuple => Nil
204
case _: (t *: ts) => summonInline[Eq[t]] :: summonAll[ts]
205
}
206
```
@@ -244,7 +244,7 @@ import scala.deriving._
244
import scala.compiletime.{erasedValue, summonInline}
245
246
247
248
249
250
0 commit comments