Skip to content

Commit af93c83

Browse files
committed
Merge branch 'master' of github.com:trading-point/reactiveswift-composable-architecture
2 parents c237195 + ccc16e1 commit af93c83

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/documentation.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@ jobs:
1919
inputs: Sources/ComposableArchitecture
2020
module-name: ComposableArchitecture
2121
output: Documentation
22+
- name: Update Permissions
23+
run: 'sudo chown --recursive $USER Documentation'
2224
- name: Deploy to GitHub Pages
2325
uses: JamesIves/github-pages-deploy-action@releases/v3
2426
with:
25-
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2628
BRANCH: gh-pages
2729
FOLDER: Documentation

Sources/ComposableArchitecture/Debugging/ReducerInstrumentation.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ extension Reducer {
2121
/// - prefix: A string to print at the beginning of the formatted message for the signpost.
2222
/// - log: An `OSLog` to use for signposts.
2323
/// - Returns: A reducer that has been enhanced with instrumentation.
24-
@available(iOS 12.0, *)
25-
public func signpost(
24+
@available(iOS 12.0, *)
25+
public func signpost(
2626
_ prefix: String = "",
2727
log: OSLog = OSLog(
2828
subsystem: "co.pointfree.composable-architecture",

Tests/ComposableArchitectureTests/ReducerTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ final class ReducerTests: XCTestCase {
199199
]
200200
)
201201
}
202-
202+
203203
@available(iOS 12.0, *)
204204
func testDefaultSignpost() {
205205
let reducer = Reducer<Int, Void, Void>.empty.signpost(log: .default)
@@ -212,7 +212,7 @@ final class ReducerTests: XCTestCase {
212212
}
213213
self.wait(for: [expectation], timeout: 0.1)
214214
}
215-
215+
216216
@available(iOS 12.0, *)
217217
func testDisabledSignpost() {
218218
let reducer = Reducer<Int, Void, Void>.empty.signpost(log: .disabled)

0 commit comments

Comments
 (0)