From dab7da9d8fc29586d3a199dd93125e6fb31e8bec Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Mon, 29 Apr 2019 10:24:15 -0700 Subject: [PATCH] Refer to Swift 5 instead of 4.2 in coding guidelines. --- Technotes/CodingGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Technotes/CodingGuidelines.md b/Technotes/CodingGuidelines.md index 957eba404..a9014acf2 100644 --- a/Technotes/CodingGuidelines.md +++ b/Technotes/CodingGuidelines.md @@ -26,7 +26,7 @@ Similarly: always work at the highest level possible, but not higher and certain ### Language -Write new code in Swift 4.2. +Write new code in Swift 5. The one exception to this is when dealing with C APIs, which are often much easier to deal with in Objective-C than in Swift. Still, though, this is rare, and is much more likely to be needed in a lower-level framework such as RSParser — it shouldn’t happen at the app level.