src/Pure/General/pretty.scala
changeset 80798 f0c754a98e52
parent 76086 338adf8d423c
child 80800 f52eb69564a4
--- a/src/Pure/General/pretty.scala	Mon Sep 02 13:41:40 2024 +0200
+++ b/src/Pure/General/pretty.scala	Mon Sep 02 13:42:38 2024 +0200
@@ -62,7 +62,11 @@
   private sealed abstract class Tree { def length: Double }
   private case class Block(
     markup: Option[(Markup, Option[XML.Body])],
-    consistent: Boolean, indent: Int, body: List[Tree], length: Double) extends Tree
+    consistent: Boolean,
+    indent: Int,
+    body: List[Tree],
+    length: Double
+  ) extends Tree
   private case class Break(force: Boolean, width: Int, indent: Int) extends Tree {
     def length: Double = width.toDouble
   }