Skip to content

Commit 092b958

Browse files
authored
Fix typo
1 parent 98b28d9 commit 092b958

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Destructure/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The `Destructure` module exposes a single extension on the [`Sequence`](https://
44

55
```Swift
66
extension Sequence {
7-
/// - Returns: A tuple containing the `head` and `tail` elements of this sequence, if the this sequence is not empty. Otherwise, `nil`.
7+
/// - Returns: A tuple containing the `head` and `tail` elements of this sequence, if this sequence is not empty. Otherwise, `nil`.
88
public var destructured: (Element, AnySequence<Element>)?
99
}
1010
```

0 commit comments

Comments
 (0)