We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbddddc commit 769892dCopy full SHA for 769892d
.scalafmt.conf
@@ -1,4 +1,4 @@
1
-version=3.0.4
+version=3.0.5
2
style = defaultWithAlign
3
maxColumn = 100
4
src/main/scala/scalatutorial/sections/LazyEvaluation.scala
@@ -237,9 +237,9 @@ object LazyEvaluation extends ScalaTutorialSection {
237
def lazyVal(res0: String): Unit = {
238
val builder = new StringBuilder
239
240
- val x = { builder += 'x'; 1 }
+ val x = { builder += 'x'; 1 }
241
lazy val y = { builder += 'y'; 2 }
242
- def z = { builder += 'z'; 3 }
+ def z = { builder += 'z'; 3 }
243
244
z + y + x + z + y + x
245
0 commit comments