From c98cfe420d09000aa07474f46702ec65f5b38b42 Mon Sep 17 00:00:00 2001 From: nielsandriesse Date: Fri, 28 May 2021 09:58:33 +1000 Subject: [PATCH] Fix spacing --- SessionUtilitiesKit/General/General.swift | 1 - 1 file changed, 1 deletion(-) diff --git a/SessionUtilitiesKit/General/General.swift b/SessionUtilitiesKit/General/General.swift index 804149346..7fb5bacdf 100644 --- a/SessionUtilitiesKit/General/General.swift +++ b/SessionUtilitiesKit/General/General.swift @@ -5,7 +5,6 @@ @inline(never) public func touch(_ value: Value) { /* Do nothing */ } - /// Returns `f(x!)` if `x != nil`, or `nil` otherwise. public func given(_ x: T?, _ f: (T) throws -> U) rethrows -> U? { return try x.map(f) }