Skip to content

Commit

Permalink
fix code format
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentlauvlwj committed Aug 16, 2020
1 parent 9599540 commit fbca348
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1346,7 +1346,7 @@ fun <E : Any, A : Appendable> EntitySequence<E, *>.joinTo(
for (element in this) {
if (++count > 1) buffer.append(separator)
if (limit < 0 || count <= limit) {
if (transform != null) buffer.append(transform(element))else buffer.append(element.toString())
if (transform != null) buffer.append(transform(element)) else buffer.append(element.toString())
} else {
buffer.append(truncated)
break
Expand Down

0 comments on commit fbca348

Please sign in to comment.