Skip to content

Commit fb72907

Browse files
committed
Fix scalafmt
1 parent 8283b0b commit fb72907

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/scala/dev/profunktor/fs2rabbit/model/ShortString.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ object ShortString {
3030
str.getBytes("utf-8").length <= MaxByteLength
3131

3232
def from(str: String): Option[ShortString] =
33-
if(isValid(str))
33+
if (isValid(str))
3434
Some(new ShortString(str) {})
3535
else
3636
None

0 commit comments

Comments
 (0)