File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed
Sources/ComposableArchitecture Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 22
22
run : sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
23
23
- name : Run tests
24
24
run : make test-library
25
- - name : Compile documentation
26
- if : ${{ matrix.xcode == '13.0' }}
27
- run : make test-docs
25
+ # - name: Compile documentation
26
+ # if: ${{ matrix.xcode == '13.0' }}
27
+ # run: make test-docs
28
28
- name : Run benchmark
29
29
run : make benchmark
30
30
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ extension Effect {
23
23
/// - id: The effect's identifier.
24
24
/// - dueTime: The duration you want to debounce for.
25
25
/// - scheduler: The scheduler you want to deliver the debounced output to.
26
- /// - options: Scheduler options that customize the effect's delivery of elements.
27
26
/// - Returns: An effect that publishes events only after a specified time elapses.
28
27
public func debounce(
29
28
id: AnyHashable ,
Original file line number Diff line number Diff line change 83
83
/// to match the state after the action was sent. In this case the `count` field changes to `1`.
84
84
///
85
85
/// For a more complex example, consider the following bare-bones search feature that uses the
86
- /// ``Effect/debounce(id:for:scheduler:options: )`` operator to wait for the user to stop typing
86
+ /// ``Effect/debounce(id:for:scheduler:)`` operator to wait for the user to stop typing
87
87
/// before making a network request:
88
88
///
89
89
/// ```swift
111
111
/// case let .queryChanged(query):
112
112
/// state.query = query
113
113
/// return environment.request(self.query)
114
- /// .debounce(id: SearchId(), interval : 0.5, scheduler: environment.mainQueue)
114
+ /// .debounce(id: SearchId(), for : 0.5, scheduler: environment.mainQueue)
115
115
///
116
116
/// case let .response(results):
117
117
/// state.results = results
You can’t perform that action at this time.
0 commit comments