Skip to content

Commit b6d2035

Browse files
committed
docs: undo previous commit
1 parent 82a90d4 commit b6d2035

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib/provable/int.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ class UInt64 extends CircuitValue {
284284
*
285285
* @example
286286
* ```ts
287-
* // NOTing 4 bits
287+
* // NOTing 4 bits with the unchecked version
288288
* let a = UInt64.from(0b0101);
289289
* let b = a.not();
290290
*
@@ -816,7 +816,7 @@ class UInt32 extends CircuitValue {
816816
*
817817
* @example
818818
* ```ts
819-
* // NOTing 4 bits
819+
* // NOTing 4 bits with the unchecked version
820820
* let a = UInt32.from(0b0101);
821821
* let b = a.not();
822822
*
@@ -1710,7 +1710,7 @@ class UInt8 extends Struct({
17101710
*
17111711
* @example
17121712
* ```ts
1713-
* // NOTing 4 bits
1713+
* // NOTing 4 bits with the unchecked version
17141714
* let a = UInt8.from(0b0101);
17151715
* let b = a.not();
17161716
*

0 commit comments

Comments
 (0)