From 7dab983e335cb71dc2dcb73be53027699525da69 Mon Sep 17 00:00:00 2001 From: Kare Morstol Date: Thu, 4 Dec 2014 19:23:38 +0100 Subject: [PATCH] Fix small typo. --- SwiftShell/Stream.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/SwiftShell/Stream.swift b/SwiftShell/Stream.swift index 19e757d..a97d330 100644 --- a/SwiftShell/Stream.swift +++ b/SwiftShell/Stream.swift @@ -152,6 +152,7 @@ public func writeTo (stream: WriteableStreamType)(input: T) { } // needed to avoid `write(SequenceType)` being called instead, +// needed to avoid `writeTo(SequenceType)` being called instead, // treating the string as a sequence of characters. /** Write a String to a writable stream. */ public func writeTo (stream: WriteableStreamType)(input: String) {