Skip to content

Commit

Permalink
Fix scalafmt
Browse files Browse the repository at this point in the history
  • Loading branch information
matejcerny committed Oct 28, 2024
1 parent 8283b0b commit fb72907
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ object ShortString {
str.getBytes("utf-8").length <= MaxByteLength

def from(str: String): Option[ShortString] =
if(isValid(str))
if (isValid(str))
Some(new ShortString(str) {})
else
None
Expand Down

0 comments on commit fb72907

Please sign in to comment.