Skip to content

Commit e5c9790

Browse files
Indentation fix
Co-authored-by: Nicolas Stucki <nicolas.stucki@gmail.com>
1 parent 66a2cbf commit e5c9790

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/src-bootstrapped/scala/quoted/Expr.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ object Expr {
148148

149149
/** Lifts the Map the keys and values of which are expressions into an expression of Map. */
150150
def ofMapKeyValues[K: Type, V: Type](m: Map[Expr[K], Expr[V]])(
151-
using QuoteContext): Expr[Map[K, V]] =
151+
using QuoteContext): Expr[Map[K, V]] =
152152
val keys: Expr[List[K]] = Expr.ofList(m.keys.toList)
153153
val values: Expr[List[V]] = Expr.ofList(m.values.toList)
154154
'{ ${ keys }.zip(${ values }).toMap }

0 commit comments

Comments
 (0)