Skip to content

Commit e9c259f

Browse files
authored
Minor doc fixes
1 parent a70c6b9 commit e9c259f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Sources/PropertyBased/FixedSeedTrait.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import Gen
99
import Testing
1010

11-
/// A trait that overrides the seed used by all property tests within a Test.
11+
/// A trait that overrides the seed used by all property checks within a Test.
1212
///
1313
/// Use ``fixedSeed(_:sourceLocation:)`` to construct an instance of this trait.
1414
public struct FixedSeedTrait: TestTrait, TestScoping {
@@ -38,11 +38,11 @@ public struct FixedSeedTrait: TestTrait, TestScoping {
3838
}
3939

4040
extension Trait where Self == FixedSeedTrait {
41-
/// Override the seed used by all property tests within this Test.
41+
/// Override the seed used by all property checks within this Test.
4242
///
43-
/// If one of your property tests fails intermittently, apply this trait to reliably reproduce the issue.
43+
/// If one of your property checks fails intermittently, apply this trait to reliably reproduce the issue.
4444
///
45-
/// > Important: Do not commit usages of this trait into version control. This trait will always report an issue regardless of the existence of any failures within the test.
45+
/// > Important: Do not commit usages of this trait into version control. Applying this trait will always report an issue regardless of the existence of any failures within the test.
4646
///
4747
/// - Parameters:
4848
/// - seed: The seed to use.

0 commit comments

Comments
 (0)