From 5844ecc8bf9e8d0581e4dacd4f00c44d897ec011 Mon Sep 17 00:00:00 2001 From: marina <138340846+bt3gl-cryptographer@users.noreply.github.com> Date: Mon, 7 Aug 2023 23:12:04 -0700 Subject: [PATCH] Update README.md --- bit_operations/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bit_operations/README.md b/bit_operations/README.md index 6d32798..98c29c1 100644 --- a/bit_operations/README.md +++ b/bit_operations/README.md @@ -17,7 +17,7 @@ * multiply by `2^k`: `num << k` -* dvide by `2^k`: `num >> k` +* divide by `2^k`: `num >> k` * check if a number is a power of 2: `(num & num - 1) == 0` or `(num & (-num)) == num`