Skip to content

Commit

Permalink
use semicolon as delimiter in TypeObject
Browse files Browse the repository at this point in the history
  • Loading branch information
ZZZank committed Jun 3, 2024
1 parent 96b4ec1 commit 6fb73a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/probejs/document/type/TypeObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ public String transform(BiFunction<DocType, String, String> transformer) {
return "{" + raw.entrySet()
.stream()
.map(entry -> String.format("%s: %s", entry.getKey(), entry.getValue().transform(transformer)))
.collect(Collectors.joining(", ")) + "}";
.collect(Collectors.joining("; ")) + "}";
}
}

0 comments on commit 6fb73a3

Please sign in to comment.