Skip to content

Commit

Permalink
Apply review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
thpani committed Jul 6, 2023
1 parent 0e08ba7 commit dcd03d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ private class QuintTypeConverter extends LazyLogging {
case Row.Nil() => (acc0, None)
case Row.Var(v) => (acc0, Some(VarT1(getVarNo(v))))
case Row.Cell(fields, other) =>
val acc1 = acc0 ++ fields.map { f => f.fieldName.toInt + 1 -> convert(f.fieldType) }
val acc1 = acc0 ++ fields.map { f => (f.fieldName.toInt + 1) -> convert(f.fieldType) }
aux(other, acc1)
}

Expand Down

0 comments on commit dcd03d9

Please sign in to comment.