Skip to content

Commit f38ebe9

Browse files
committed
fix: ACL for DispatchGroup.wait should have been public.
1 parent 08363a3 commit f38ebe9

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
@@ -69,7 +69,7 @@ extension DispatchAsync {
6969
}
7070
}
7171

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

0 commit comments

Comments
 (0)