@@ -55,7 +55,7 @@ export class CairoUint256 {
5555 }
5656
5757 /**
58- * Validate if BigNumberish can be represented as Unit256
58+ * Validate if BigNumberish can be represented as Uint256
5959 */
6060 static validate ( bigNumberish : BigNumberish ) {
6161 const bigInt = BigInt ( bigNumberish ) ;
@@ -65,7 +65,7 @@ export class CairoUint256 {
6565 }
6666
6767 /**
68- * Validate if low and high can be represented as Unit256
68+ * Validate if low and high can be represented as Uint256
6969 */
7070 static validateProps ( low : BigNumberish , high : BigNumberish ) {
7171 const bigIntLow = BigInt ( low ) ;
@@ -80,7 +80,7 @@ export class CairoUint256 {
8080 }
8181
8282 /**
83- * Check if BigNumberish can be represented as Unit256
83+ * Check if BigNumberish can be represented as Uint256
8484 */
8585 static is ( bigNumberish : BigNumberish ) {
8686 try {
@@ -107,7 +107,7 @@ export class CairoUint256 {
107107
108108 /**
109109 * Return Uint256 structure with HexString props
110- * {low: HexString, high: HexString}
110+ * ` {low: HexString, high: HexString}`
111111 */
112112 toUint256HexString ( ) {
113113 return {
@@ -118,7 +118,7 @@ export class CairoUint256 {
118118
119119 /**
120120 * Return Uint256 structure with DecimalString props
121- * {low: DecString, high: DecString}
121+ * ` {low: DecString, high: DecString}`
122122 */
123123 toUint256DecimalString ( ) {
124124 return {
0 commit comments