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.
2 parents 376f5b0 + d9dc363 commit 58cc3f6Copy full SHA for 58cc3f6
docs/docs/reference/metaprogramming/macros.md
@@ -190,7 +190,7 @@ would be rewritten to
190
def reflect[T: Type, U: Type](f: Expr[T] => Expr[U]): Expr[T => U] =
191
'{ (x: ${ summon[Type[T]] }) => ${ f('x) } }
192
```
193
-The `the` query succeeds because there is a given instance of
+The `summon` query succeeds because there is a given instance of
194
type `Type[T]` available (namely the given parameter corresponding
195
to the context bound `: Type`), and the reference to that value is
196
phase-correct. If that was not the case, the phase inconsistency for
0 commit comments