Skip to content

Commit 8c29962

Browse files
Merge pull request #1694 from practicalswift/typo-fixes-20160315
[gardening] Fix recently introduced typo: "doube" → "double"
2 parents 48ed191 + 1c31e7f commit 8c29962

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/Prototypes/Integers.swift.gyb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1339,23 +1339,23 @@ tests.test("nthWord") {
13391339
expectEqual(0, z.nthWord(1))
13401340
}
13411341

1342-
tests.test("DoubeWidthMultiply/UInt8") {
1342+
tests.test("DoubleWidthMultiply/UInt8") {
13431343
let a: UInt8 = 42
13441344
let b: UInt8 = 42
13451345
let res = a.doubleWidthMultiply(b)
13461346
expectEqual(0x06, res.high)
13471347
expectEqual(0xe4, res.low)
13481348
}
13491349

1350-
tests.test("DoubeWidthMultiply/Int8") {
1350+
tests.test("DoubleWidthMultiply/Int8") {
13511351
let a: Int8 = 42
13521352
let b: Int8 = -42
13531353
let res = a.doubleWidthMultiply(b)
13541354
expectEqual(Int8(bitPattern: 0xf9), res.high)
13551355
expectEqual(0x1c, res.low)
13561356
}
13571357

1358-
tests.test("DoubeWidthMultiply/Int8/DoubleNegation") {
1358+
tests.test("DoubleWidthMultiply/Int8/DoubleNegation") {
13591359
let a: Int8 = -42
13601360
let b: Int8 = -42
13611361
let res = a.doubleWidthMultiply(b)

0 commit comments

Comments
 (0)