We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4c23812 + b83adfd commit d9bdf59Copy full SHA for d9bdf59
snippets/java/bit-manipulation/is-power-of-two.md
@@ -12,5 +12,5 @@ public static boolean isPowerOfTwo(int number) {
12
13
// Usage:
14
int number = 16;
15
-System.out.println(isPowerOfTwo(5)); // true (2^4)
16
-```
+System.out.println(isPowerOfTwo(number)); // true (2^4)
+```
0 commit comments