From 6ec74ec80ef75b3579c78555c1a30c83a385e465 Mon Sep 17 00:00:00 2001 From: Markus Winter Date: Wed, 27 Oct 2021 08:28:25 +0200 Subject: [PATCH] Fix source code formatting Co-authored-by: Xiaodi Wu <13952+xwu@users.noreply.github.com> --- Sources/RealModule/AugmentedArithmetic.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/RealModule/AugmentedArithmetic.swift b/Sources/RealModule/AugmentedArithmetic.swift index d232c26b..ee3bd951 100644 --- a/Sources/RealModule/AugmentedArithmetic.swift +++ b/Sources/RealModule/AugmentedArithmetic.swift @@ -134,7 +134,7 @@ extension Augmented { /// /// ["twoSum"]: https://en.wikipedia.org/wiki/2Sum @_transparent - public static func sum(_ a: T, _ b: T) -> (head: T, tail: T) { + public static func sum(_ a: T, _ b: T) -> (head: T, tail: T) { let head = a + b let ɑ = head - b let β = head - ɑ