Skip to content

Commit b0214ee

Browse files
committed
docs: remove non-existent parameters
1 parent 2ce3a06 commit b0214ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/provable/int.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -928,7 +928,7 @@ class UInt32 extends CircuitValue {
928928
* let a = UInt32.from(3); // ... 000011
929929
* let b = UInt32.from(5); // ... 000101
930930
*
931-
* let c = a.and(b, 2); // ... 000001
931+
* let c = a.and(b); // ... 000001
932932
* c.assertEquals(1);
933933
* ```
934934
*/
@@ -1745,7 +1745,7 @@ class UInt8 extends Struct({
17451745
* let a = UInt8.from(3); // ... 000011
17461746
* let b = UInt8.from(5); // ... 000101
17471747
*
1748-
* let c = a.and(b, 2); // ... 000001
1748+
* let c = a.and(b); // ... 000001
17491749
* c.assertEquals(1);
17501750
* ```
17511751
*/

0 commit comments

Comments
 (0)