Skip to content

Commit 6e3e39d

Browse files
committed
Comment out documentation build for now as it's not working.
1 parent c0e5874 commit 6e3e39d

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
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

Sources/ComposableArchitecture/Effects/Debouncing.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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,

Sources/ComposableArchitecture/TestSupport/TestStore.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
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
@@ -111,7 +111,7 @@
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

0 commit comments

Comments
 (0)