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 {