mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-12-19 07:00:35 +08:00
style: enable MethodName in CheckStyle (#5182)
enabled: MethodName in CheckStyle
This commit is contained in:
committed by
GitHub
parent
ea4dc15a24
commit
295e7436b1
@@ -10,7 +10,7 @@ public final class SquareRootWithBabylonianMethod {
|
||||
* @param num contains elements
|
||||
* @return the square root of num
|
||||
*/
|
||||
public static float square_Root(float num) {
|
||||
public static float squareRoot(float num) {
|
||||
float a = num;
|
||||
float b = 1;
|
||||
double e = 0.000001;
|
||||
|
||||
Reference in New Issue
Block a user