From 1148a29c252c2431ff396fceb034d27b08622fe4 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Fri, 5 Nov 2021 08:57:49 -0700 Subject: [PATCH] Update rfcs/function-bit32-countlz-countrz.md Co-authored-by: vegorov-rbx <75688451+vegorov-rbx@users.noreply.github.com> --- rfcs/function-bit32-countlz-countrz.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rfcs/function-bit32-countlz-countrz.md b/rfcs/function-bit32-countlz-countrz.md index 93f96ac2..986da70c 100644 --- a/rfcs/function-bit32-countlz-countrz.md +++ b/rfcs/function-bit32-countlz-countrz.md @@ -12,7 +12,7 @@ All CPUs have instructions to determine the position of first/last set bit in an - Scanning set bits in an integer, which allows efficient traversal of compact representation of bitmaps - Allocating bits out of a bitmap quickly -Today it's possible to approximate `countlz` using `floor` and `log` but this approximation is relatively slow; approximating `ccountrz` is difficult without iterating through each bit. +Today it's possible to approximate `countlz` using `floor` and `log` but this approximation is relatively slow; approximating `countrz` is difficult without iterating through each bit. ## Design