From 50dfbce2dbacce65d43fd74b0ceb018a4949ed0a Mon Sep 17 00:00:00 2001 From: Bill Breitmayer Date: Sat, 1 Jun 2024 13:29:54 -0400 Subject: [PATCH] Spelling Coming down to the finish ... --- bit_manipulation/multibit_manipulation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bit_manipulation/multibit_manipulation.py b/bit_manipulation/multibit_manipulation.py index 74507f833..67bcc96e0 100644 --- a/bit_manipulation/multibit_manipulation.py +++ b/bit_manipulation/multibit_manipulation.py @@ -57,7 +57,7 @@ rather the position to the right of the bit index. Bit manipulation operations can be tricky to debug. In the insert example above, the result of inserting 0b11 in the center ( index=3 ) or to the right ( index=2 ) produces the same correct result despite the unintended -misspecification. Why is it worling sometimes and not others ? Frequently, +misspecification. Why is it working sometimes and not others ? Frequently, it's the result of inserting at the wrong index, for the hundredth time ! Various bit insert/remove solutions exist using bin() string functions