Skip to content

Commit c1cabb2

Browse files
correcting method name
1 parent df4c029 commit c1cabb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/bitmanipulation/IsPowerFour.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ private IsPowerFour() {
2020
* @param number the integer to check
2121
* @return true if the number is a power of false, false otherwise
2222
*/
23-
public static boolean IsPowerFour(int number) {
23+
public static boolean isPowerFour(int number) {
2424
if (number <= 0) {
2525
return false;
2626
}

0 commit comments

Comments
 (0)