We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1dbd10 commit 350e1e1Copy full SHA for 350e1e1
Sources/Dependencies/DependencyValues/Assert.swift
@@ -167,12 +167,13 @@ private enum PreconditionKey: DependencyKey {
167
168
/// An ``AssertionEffect`` that invokes the given closure.
169
public struct AnyAssertionEffect: AssertionEffect {
170
- private let assert: @Sendable (
171
- _ condition: @autoclosure () -> Bool,
172
- _ message: @autoclosure () -> String,
173
- _ file: StaticString,
174
- _ line: UInt
175
- ) -> Void
+ private let assert:
+ @Sendable (
+ _ condition: @autoclosure () -> Bool,
+ _ message: @autoclosure () -> String,
+ _ file: StaticString,
+ _ line: UInt
176
+ ) -> Void
177
178
public init(
179
_ assert: @escaping @Sendable (
0 commit comments