diff options
Diffstat (limited to 'stdlib/source/lux/data/bit.lux')
| -rw-r--r-- | stdlib/source/lux/data/bit.lux | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/stdlib/source/lux/data/bit.lux b/stdlib/source/lux/data/bit.lux index 2562adc2d..99ade5269 100644 --- a/stdlib/source/lux/data/bit.lux +++ b/stdlib/source/lux/data/bit.lux @@ -12,12 +12,12 @@ (-> Nat <type> <type>) (_lux_proc ["bit" <op>] [subject param]))] - [& "and" "Bit and." Nat] - [| "or" "Bit or." Nat] - [^ "xor" "Bit xor." Nat] - [<< "shift-left" "Bit shift-left." Nat] - [>> "shift-right" "Bit shift-right." Int] - [>>> "unsigned-shift-right" "Bit unsigned-shift-right." Nat] + [& "and" "Bitwise and." Nat] + [| "or" "Bitwise or." Nat] + [^ "xor" "Bitwise xor." Nat] + [<< "shift-left" "Bitwise shift-left." Nat] + [>> "shift-right" "Bitwise shift-right." Int] + [>>> "unsigned-shift-right" "Bitwise unsigned-shift-right." Nat] ) (def: #export (count subject) @@ -28,7 +28,7 @@ (def: mask Nat (int-to-nat -1)) (def: #export ~ - {#;doc "Bit negation."} + {#;doc "Bitwise negation."} (-> Nat Nat) (^ mask)) |
