Skip to content

Commit 69073de

Browse files
committed
fix:cleared some format issues
1 parent 7f21bf2 commit 69073de

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/thealgorithms/maths

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public static double surfaceAreaTriangle(final double baseLength, final double h
128128
if (height <= 0) {
129129
throw new IllegalArgumentException(POSITIVE_HEIGHT);
130130
}
131-
return baseLength* height / 2;
131+
return baseLength * height / 2;
132132
}
133133

134134
/**

0 commit comments

Comments
 (0)