From d4de4817444c5fa0280b2a177bb78465d7e46999 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sun, 17 Apr 2022 15:27:05 -0400 Subject: [PATCH 1/3] spelling: distinguish Signed-off-by: Josh Soref --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc94b05672ad6..72cbc88115e01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8994,7 +8994,7 @@ Swift 1.0 [SE-0107]: [SE-0108]: [SE-0109]: -[SE-0110]: +[SE-0110]: [SE-0111]: [SE-0112]: [SE-0113]: From 8025eaf58a95334702f30d6fc00b80e7827899b4 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sun, 17 Apr 2022 15:51:43 -0400 Subject: [PATCH 2/3] spelling: that Signed-off-by: Josh Soref --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 72cbc88115e01..9ba738c1c2a17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2684,7 +2684,7 @@ Swift 3.1 result in a compilation error. Examples of functions that "return twice" include `vfork` and `setjmp`. - These functions change the control flow of a program in ways that that Swift + These functions change the control flow of a program in ways that Swift has never supported. For example, definitive initialization of variables, a core Swift language feature, could not be guaranteed when these functions were used. From 4c4e32d56f6bb7f3c37f296e2f3a2330df7db169 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sun, 17 Apr 2022 15:56:06 -0400 Subject: [PATCH 3/3] spelling: withdrawal Signed-off-by: Josh Soref --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ba738c1c2a17..c3eea8c2db9e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -709,7 +709,7 @@ Swift 5.5 } - func hadWithdrawlOn(_ day: Date, from acct: BankAccount) async -> Bool { + func hadWithdrawalOn(_ day: Date, from acct: BankAccount) async -> Bool { return await !acct[day].allSatisfy { $0.amount >= Amount.zero } // ^~~~~~~~~ this access is async }