From c5fe7bec4675225ea742c22e9f0cc44c15ab07d8 Mon Sep 17 00:00:00 2001 From: Rob Rix Date: Thu, 15 Oct 2015 18:32:43 -0400 Subject: [PATCH] What why --- prototype/Doubt/Free.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prototype/Doubt/Free.swift b/prototype/Doubt/Free.swift index 525659ae2..9ad6b8b0c 100644 --- a/prototype/Doubt/Free.swift +++ b/prototype/Doubt/Free.swift @@ -61,7 +61,7 @@ public enum Free: CustomDebugStringConvertible, SyntaxConvertible { } - /// Reduces the receiver top-down, left-to-right, starting from an `initial` value, and applying `combine` to successive values.s + /// Reduces the receiver top-down, left-to-right, starting from an `initial` value, and applying `combine` to successive values. public func reduce(initial: B, combine: (B, B) -> B) -> B { return iterate { switch $0 {