Skip to content

Commit 9541ec8

Browse files
committed
Fix rebase breakage
1 parent cb8dafd commit 9541ec8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

staging/src/scala/quoted/staging/staging.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ package object staging {
1616
* This method should not be called in a context where there is already has a `QuoteContext`
1717
* such as within a `run` or a `withQuoteContext`.
1818
*/
19-
def run[T](expr: (given QuoteContext) => Expr[T]) given (toolbox: Toolbox): T = toolbox.run(expr(given _))
19+
def run[T](expr: (given QuoteContext) => Expr[T])(given toolbox: Toolbox): T = toolbox.run(expr(given _))
2020

2121
/** Provide a new quote context within the scope of the argument that is only valid within the scope the argument.
2222
* Return the result of the argument.

0 commit comments

Comments
 (0)