Skip to content

Commit f4d07c1

Browse files
committed
fixed spacing
1 parent 756c91e commit f4d07c1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

scala-libraries-standalone/refined/src/main/scala/com/baeldung/refined/RefinedIntro.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import eu.timepit.refined.api.Validate
1313
object RefinedIntro {
1414
// val oddNumber: Refined[Int, Odd] = 8
1515
// val oddNumber: Int Refined Odd = 8
16+
1617
val age: Int Refined Less[35] = 30
1718
val ageInterval: Int Refined Interval.Closed[30, 35] = 35
1819
val age2: Int Refined GreaterEqual[35] = 35

0 commit comments

Comments
 (0)