From 9841debe9109ecf7485d88dbb9d2500b55da44d2 Mon Sep 17 00:00:00 2001 From: Rob Rix Date: Wed, 30 Sep 2015 10:42:43 -0400 Subject: [PATCH] No longer need to disambiguate String. --- prototype/Doubt/Hash.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prototype/Doubt/Hash.swift b/prototype/Doubt/Hash.swift index 586f3f060..6bfe57195 100644 --- a/prototype/Doubt/Hash.swift +++ b/prototype/Doubt/Hash.swift @@ -1,9 +1,9 @@ public enum Hash: Hashable { case Sequence([Hash]) - case Label(Swift.String) + case Label(String) case Raw(Int) - public static func Case(label: Swift.String, _ hashes: Hash...) -> Hash { + public static func Case(label: String, _ hashes: Hash...) -> Hash { return .Sequence([ .Label(label) ] + hashes) }