Fix spacing

This commit is contained in:
nielsandriesse 2021-05-28 09:58:33 +10:00
parent 2730804e4a
commit c98cfe420d
1 changed files with 0 additions and 1 deletions

View File

@ -5,7 +5,6 @@
@inline(never)
public func touch<Value>(_ value: Value) { /* Do nothing */ }
/// Returns `f(x!)` if `x != nil`, or `nil` otherwise.
public func given<T, U>(_ x: T?, _ f: (T) throws -> U) rethrows -> U? { return try x.map(f) }