Skip to content

Commit 2a68c6c

Browse files
committed
CHANGELOG: fix typo in example code
Remove trailing > that was most likely a copy-paste error.
1 parent 99365ad commit 2a68c6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Swift 3.0
2121

2222
```swift
2323
func anyCommonElements<T : SequenceType, U : SequenceType>(lhs: T, _ rhs: U) -> Bool
24-
where T.Generator.Element: Equatable, T.Generator.Element == U.Generator.Element>
24+
where T.Generator.Element: Equatable, T.Generator.Element == U.Generator.Element
2525
{
2626
...
2727
}

0 commit comments

Comments
 (0)