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 @@ -1339,23 +1339,23 @@ tests.test("nthWord") {
1339
1339
expectEqual ( 0 , z. nthWord ( 1 ) )
1340
1340
}
1341
1341
1342
- tests. test ( " DoubeWidthMultiply /UInt8" ) {
1342
+ tests. test ( " DoubleWidthMultiply /UInt8" ) {
1343
1343
let a : UInt8 = 42
1344
1344
let b : UInt8 = 42
1345
1345
let res = a. doubleWidthMultiply ( b)
1346
1346
expectEqual ( 0x06 , res. high)
1347
1347
expectEqual ( 0xe4 , res. low)
1348
1348
}
1349
1349
1350
- tests. test ( " DoubeWidthMultiply /Int8" ) {
1350
+ tests. test ( " DoubleWidthMultiply /Int8" ) {
1351
1351
let a : Int8 = 42
1352
1352
let b : Int8 = - 42
1353
1353
let res = a. doubleWidthMultiply ( b)
1354
1354
expectEqual ( Int8 ( bitPattern: 0xf9 ) , res. high)
1355
1355
expectEqual ( 0x1c , res. low)
1356
1356
}
1357
1357
1358
- tests. test ( " DoubeWidthMultiply /Int8/DoubleNegation" ) {
1358
+ tests. test ( " DoubleWidthMultiply /Int8/DoubleNegation" ) {
1359
1359
let a : Int8 = - 42
1360
1360
let b : Int8 = - 42
1361
1361
let res = a. doubleWidthMultiply ( b)
You can’t perform that action at this time.
0 commit comments