File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 *
You can’t perform that action at this time.
0 commit comments