Skip to content

Commit

Permalink
fix(string/Vocab): fix space
Browse files Browse the repository at this point in the history
  • Loading branch information
rokotric committed Nov 19, 2021
1 parent 360fa68 commit f905456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/ip/syssrc/string/Vocab.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static String prefixes(String prefix, String... groups) {
groups[i] = prefix.concat(groups[i]);
}

uni += String.join(":: ", groups);
uni += String.join(" :: ", groups);

return new String(uni);
}
Expand Down

0 comments on commit f905456

Please sign in to comment.