[Swift-commit] r6392 - branches/faster/tests/language/working

hategan at ci.uchicago.edu hategan at ci.uchicago.edu
Mon Mar 18 00:03:59 CDT 2013


Author: hategan
Date: 2013-03-18 00:03:59 -0500 (Mon, 18 Mar 2013)
New Revision: 6392

Modified:
   branches/faster/tests/language/working/escapes.swift
Log:
single quotes do not need escaping

Modified: branches/faster/tests/language/working/escapes.swift
===================================================================
--- branches/faster/tests/language/working/escapes.swift	2013-03-18 04:49:50 UTC (rev 6391)
+++ branches/faster/tests/language/working/escapes.swift	2013-03-18 05:03:59 UTC (rev 6392)
@@ -11,6 +11,9 @@
 
 string x = "\"";
 
-string y = "\'";
+// Why are we escaping single-quotes?
+// string y = "\'";
 
+string y = "'";
+
 string z = "\\";




More information about the Swift-commit mailing list