From 2794445f9537d8acee3bba3142335a71f0e0628b Mon Sep 17 00:00:00 2001 From: Sagid M Date: Sun, 20 Dec 2020 21:57:03 +0300 Subject: [PATCH] Add the word "set" to avoid misinterpretation in description (#286) * Add word to avoid misinterpretation * Rename the CI workflow file. Co-authored-by: Sagid Magomedov Co-authored-by: Oleksii Trekhleb --- src/algorithms/math/is-power-of-two/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/algorithms/math/is-power-of-two/README.md b/src/algorithms/math/is-power-of-two/README.md index 5b66b7c6..8253cb87 100644 --- a/src/algorithms/math/is-power-of-two/README.md +++ b/src/algorithms/math/is-power-of-two/README.md @@ -12,7 +12,7 @@ the number can't be a power of two. **Bitwise solution** -Powers of two in binary form always have just one bit. +Powers of two in binary form always have just one bit set. The only exception is with a signed integer (e.g. an 8-bit signed integer with a value of -128 looks like: `10000000`)