Browse Source

Update swift.test.ts

Philip Turner 3 years ago
parent
commit
29454a6a53
1 changed files with 2 additions and 2 deletions
  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' */
 			]
 		}
 	],