You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: staging/src/scala/quoted/staging/Toolbox.scala
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ package staging
3
3
4
4
importscala.annotation.implicitNotFound
5
5
6
-
@implicitNotFound("Could not find implicit scala.quoted.staging.Toolbox.\n\nDefault toolbox can be instantiated with:\n `delegate for scala.quoted.staging.Toolbox = scala.quoted.staging.Toolbox.make(getClass.getClassLoader)`\n\n")
6
+
@implicitNotFound("Could not find implicit scala.quoted.staging.Toolbox.\n\nDefault toolbox can be instantiated with:\n `given scala.quoted.staging.Toolbox = scala.quoted.staging.Toolbox.make(getClass.getClassLoader)`\n\n")
7
7
traitToolbox {
8
8
defrun[T](expr: QuoteContext=>Expr[T]):T
9
9
}
@@ -15,7 +15,7 @@ object Toolbox {
15
15
* Usuage:
16
16
* ```
17
17
* import scala.quoted.staging._
18
-
* delegate for Toolbox = Toolbox.make(getClass.getClassLoader)
18
+
* given Toolbox = Toolbox.make(getClass.getClassLoader)
19
19
* ```
20
20
*
21
21
* @paramappClassloader classloader of the application that generated the quotes
0 commit comments