tuned whitespace;
authorwenzelm
Mon, 02 Sep 2024 13:42:38 +0200
changeset 80798 f0c754a98e52
parent 80797 5d09ceca0924
child 80799 3f740fa101f7
tuned whitespace;
src/Pure/General/pretty.scala
--- 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
   }