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 2222 run : sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
2323 - name : Run tests
2424 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
2828 - name : Run benchmark
2929 run : make benchmark
3030
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ extension Effect {
2323 /// - id: The effect's identifier.
2424 /// - dueTime: The duration you want to debounce for.
2525 /// - scheduler: The scheduler you want to deliver the debounced output to.
26- /// - options: Scheduler options that customize the effect's delivery of elements.
2726 /// - Returns: An effect that publishes events only after a specified time elapses.
2827 public func debounce(
2928 id: AnyHashable ,
Original file line number Diff line number Diff line change 8383 /// to match the state after the action was sent. In this case the `count` field changes to `1`.
8484 ///
8585 /// 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
8787 /// before making a network request:
8888 ///
8989 /// ```swift
111111 /// case let .queryChanged(query):
112112 /// state.query = query
113113 /// 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)
115115 ///
116116 /// case let .response(results):
117117 /// state.results = results
You can’t perform that action at this time.
0 commit comments