Skip to content

Commit 05366d7

Browse files
committed
Revert names of temporary variables
1 parent 6ec74ec commit 05366d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/RealModule/AugmentedArithmetic.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ extension Augmented {
136136
@_transparent
137137
public static func sum<T: Real>(_ a: T, _ b: T) -> (head: T, tail: T) {
138138
let head = a + b
139-
let ɑ = head - b
140-
let β = head - ɑ
141-
let tail = (a - ɑ) + (b - β)
139+
let x = head - b
140+
let y = head - x
141+
let tail = (a - x) + (b - y)
142142
return (head, tail)
143143
}
144144
}

0 commit comments

Comments
 (0)