Skip to content

Commit 4b7809b

Browse files
committed
Fix typo in Generator docs
1 parent c2af72b commit 4b7809b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/PropertyBased/Generator.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public typealias SendableSequenceType = Sequence
1616
///
1717
/// In most cases, the exact type of `ShrinkSequence` doesn't need to be public in your code, and the `some` keyword can be used instead.
1818
/// ```swift
19-
/// let gen = Generator<Output, some Sequence> = ...
19+
/// let gen: Generator<Output, some Sequence> = ...
2020
/// ```
2121
public struct Generator<ResultValue, ShrinkSequence: SendableSequenceType>: Sendable {
2222
public typealias InputValue = ShrinkSequence.Element

0 commit comments

Comments
 (0)