Skip to content

Commit

Permalink
Fix source code formatting
Browse files Browse the repository at this point in the history
Co-authored-by: Xiaodi Wu <13952+xwu@users.noreply.github.com>
  • Loading branch information
markuswntr and xwu authored Oct 27, 2021
1 parent d4a440f commit 6ec74ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/RealModule/AugmentedArithmetic.swift
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ extension Augmented {
///
/// ["twoSum"]: https://en.wikipedia.org/wiki/2Sum
@_transparent
public static func sum<T:Real>(_ a: T, _ b: T) -> (head: T, tail: T) {
public static func sum<T: Real>(_ a: T, _ b: T) -> (head: T, tail: T) {
let head = a + b
let ɑ = head - b
let β = head - ɑ
Expand Down

0 comments on commit 6ec74ec

Please sign in to comment.