Skip to content

Commit f85ca6c

Browse files
pixyzehnnatecook1000
authored andcommitted
Remove redundant space in first(where:) of Sequence (#23365)
1 parent 51baf0d commit f85ca6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/core/Sequence.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ extension Sequence {
734734
public func first(
735735
where predicate: (Element) throws -> Bool
736736
) rethrows -> Element? {
737-
for element in self {
737+
for element in self {
738738
if try predicate(element) {
739739
return element
740740
}

0 commit comments

Comments
 (0)