Skip to content

Commit 769892d

Browse files
authored
Update scalafmt-core to 3.0.5
1 parent bbddddc commit 769892d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=3.0.4
1+
version=3.0.5
22
style = defaultWithAlign
33
maxColumn = 100
44

src/main/scala/scalatutorial/sections/LazyEvaluation.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,9 +237,9 @@ object LazyEvaluation extends ScalaTutorialSection {
237237
def lazyVal(res0: String): Unit = {
238238
val builder = new StringBuilder
239239

240-
val x = { builder += 'x'; 1 }
240+
val x = { builder += 'x'; 1 }
241241
lazy val y = { builder += 'y'; 2 }
242-
def z = { builder += 'z'; 3 }
242+
def z = { builder += 'z'; 3 }
243243

244244
z + y + x + z + y + x
245245

0 commit comments

Comments
 (0)