From 0cc649ce0882ec9ff6b197f4430cf38af655cd0c Mon Sep 17 00:00:00 2001 From: Dekkonot Date: Fri, 20 Oct 2023 10:05:32 -0700 Subject: [PATCH] Revert addition to documentation --- docs/_pages/library.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs/_pages/library.md b/docs/_pages/library.md index 8633b332..d6d1bc7f 100644 --- a/docs/_pages/library.md +++ b/docs/_pages/library.md @@ -728,12 +728,6 @@ function bit32.countrz(n: number): number Returns the number of consecutive zero bits in the 32-bit representation of `n` starting from the right-most (least significant) bit. Returns 32 if `n` is zero. -``` -function bit32.byteswap(n: number): number -``` - -Returns `n` with the order of the bytes swappped. - ## utf8 library Strings in Luau can contain arbitrary bytes; however, in many applications strings representing text contain UTF8 encoded data by convention, that can be inspected and manipulated using `utf8` library.