Skip to content

Commit

Permalink
Fixed a markdown typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Nic Young authored and Nic Young committed Dec 6, 2023
1 parent f219032 commit 9da8ef1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions docs/zkapps/o1js/bitwise-operations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ In o1js, bitwise operations are implemented as [gadgets](/zkapps/o1js/gadgets).
- [divMod32()](#divmod32)
- [leftShift32()](#leftshift32)
- [leftShift64()](#leftshift64)
- [rightShift32()](#rightshift32)
- [rightShift64()](#rightshift64)
- [rotate32()](#rotate32)
- [rotate64()](#rotate64)
Expand Down Expand Up @@ -243,7 +242,7 @@ y.assertEquals(0b110000); // 48 in binary

const xLarge = Provable.witness(Field, () => Field(12345678901234567890123456789012345678n));
Gadgets.leftShift64(xLarge, 32); // throws an error since input exceeds 64 bits
``
```

## rightShift64()

Expand Down

0 comments on commit 9da8ef1

Please sign in to comment.