Skip to content

Commit c1c2465

Browse files
committed
Added white space
1 parent 4251b76 commit c1c2465

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/maths/MathBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ public Builder format(String format) {
331331

332332
public Builder format(int decimalPlace) {
333333
String pattern = "."
334-
+"#".repeat(decimalPlace);
334+
+ "#".repeat(decimalPlace);
335335
DecimalFormat formater = new DecimalFormat(pattern);
336336
String num = formater.format(number);
337337
number = Double.parseDouble(num);

0 commit comments

Comments
 (0)