Add CI for DocC warnings (#750)

* Add CI for DocC warnings

* More specific grep
This commit is contained in:
Stephen Celis
2021-08-25 15:39:36 -04:00
committed by GitHub
parent 161abda3b7
commit bf9ab75f9d
6 changed files with 43 additions and 24 deletions

View File

@@ -47,10 +47,9 @@ import SwiftUI
/// }
/// ```
///
/// - See also: ``Reducer/pullback(state:action:environment:breakpointOnNil:_:_:)``, a method that
/// aids in transforming reducers that operate on each case of an enum into reducers that operate
/// on the entire enum.
///
/// - See also: ``Reducer/pullback(state:action:environment:breakpointOnNil:file:line:)``, a method
/// that aids in transforming reducers that operate on each case of an enum into reducers that
/// operate on the entire enum.
public struct SwitchStore<State, Action, Content>: View where Content: View {
public let store: Store<State, Action>
public let content: () -> Content