Explorar el Código

Update swift.test.ts

Philip Turner hace 3 años
padre
commit
29454a6a53
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      src/basic-languages/swift/swift.test.ts

+ 2 - 2
src/basic-languages/swift/swift.test.ts

@@ -9,12 +9,12 @@ testTokenization('swift', [
 	// Attributes
 	[
 		{
-			line: '@noescape',
+			line: '@escaping',
 			tokens: [
 				{
 					startIndex: 0,
 					type: 'keyword.control.swift'
-				} /* '@noescape' */
+				} /* '@escaping' */
 			]
 		}
 	],