Skip to content

Commit 949783f

Browse files
committed
Fix public access in init of ReducerGroup
1 parent bef760c commit 949783f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/MiniSwift/ReducerGroup.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ public protocol Group: Disposable {
2424
public class ReducerGroup: Group {
2525

2626
public let disposeBag = CompositeDisposable()
27-
28-
init(_ builder: () -> [Disposable]) {
27+
28+
public init(_ builder: () -> [Disposable]) {
2929
let disposable = builder()
3030
disposable.forEach { _ = disposeBag.insert($0) }
3131
}

0 commit comments

Comments
 (0)