Skip to content

Commit 00ab7df

Browse files
committed
Update scalafmt-core to 2.6.1
1 parent 130ab8a commit 00ab7df

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.scalafmt.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=2.6.0
1+
version=2.6.1
22
style = defaultWithAlign
33
maxColumn = 100
44

src/main/scala/stdlib/Asserts.scala

+2-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ object Asserts extends AnyFlatSpec with Matchers with org.scalaexercises.definit
6767
v1 shouldEqual res0
6868

6969
/**
70-
* `shouldEqual` is an assertion. It is from ScalaTest, not from the Scala language. */
70+
* `shouldEqual` is an assertion. It is from ScalaTest, not from the Scala language.
71+
*/
7172
}
7273

7374
/**

src/main/scala/stdlib/Iterables.scala

+2-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,8 @@ object Iterables extends AnyFlatSpec with Matchers with org.scalaexercises.defin
201201
val yt1 = Set(3, 2, 1)
202202
xt1.iterator.sameElements(yt1) should be(res3) // Caution - see below!
203203
/**
204-
* Note that very small Sets (containing up to 4 elements) are implemented differently to larger Sets; as a result, their iterators produce the elements in the order that they were originally added. This causes the surprising (and arguably incorrect) behaviour in the final example above. */
204+
* Note that very small Sets (containing up to 4 elements) are implemented differently to larger Sets; as a result, their iterators produce the elements in the order that they were originally added. This causes the surprising (and arguably incorrect) behaviour in the final example above.
205+
*/
205206
}
206207

207208
}

src/main/scala/stdlib/Options.scala

+2-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,8 @@ object Options extends AnyFlatSpec with Matchers with org.scalaexercises.definit
108108
result2 should be(res1)
109109

110110
/**
111-
* Note that the type of result1 is now Option[Double], thanks to the scala type inference. */
111+
* Note that the type of result1 is now Option[Double], thanks to the scala type inference.
112+
*/
112113
}
113114

114115
/**

0 commit comments

Comments
 (0)