diff --git a/stdlib/public/Concurrency/TaskGroup.swift b/stdlib/public/Concurrency/TaskGroup.swift index 3b0e4728c5cac..fa16d8bb963ad 100644 --- a/stdlib/public/Concurrency/TaskGroup.swift +++ b/stdlib/public/Concurrency/TaskGroup.swift @@ -364,7 +364,7 @@ public struct TaskGroup { /// return collected /// /// Awaiting on an empty group - /// immediate returns `nil` without suspending. + /// immediately returns `nil` without suspending. /// /// You can also use a `for`-`await`-`in` loop to collect results of a task group: /// @@ -423,7 +423,7 @@ public struct TaskGroup { /// /// At the start of the body of a `withTaskGroup(of:returning:body:)` call, /// the task group is always empty. - /// It`s guaranteed to be empty when returning from that body + /// It's guaranteed to be empty when returning from that body /// because a task group waits for all child tasks to complete before returning. /// /// - Returns: `true` if the group has no pending tasks; otherwise `false`.