Skip to content

Commit 76c5a31

Browse files
committed
fix: ACL for DispatchGroup.wait should have been public.
1 parent e3f884e commit 76c5a31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/DispatchAsync/DispatchGroup.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ extension DispatchAsync {
7070
}
7171
}
7272

73-
func wait() async {
73+
public func wait() async {
7474
await withCheckedContinuation { continuation in
7575
queue.enqueue { [weak self] in
7676
guard let self else { return }

0 commit comments

Comments
 (0)