Skip to content

Commit f877d0b

Browse files
authored
Merge pull request #3763 from xwu/changelog-fix-never
Fix CHANGELOG.md (#2)
2 parents 8321a28 + 71efee6 commit f877d0b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Swift 3.0
1111
@noreturn func fatalError(msg: String) { ... } // old
1212
func fatalError(msg: String) -> Never { ... } // new
1313

14-
func performOperation<T>(continuation: T -> Never) { ... } // old
15-
func performOperation<T>(continuation: @noreturn T -> ()) { ... } // new
14+
func performOperation<T>(continuation: @noreturn T -> ()) { ... } // old
15+
func performOperation<T>(continuation: T -> Never) { ... } // new
1616
```
1717

1818
* [SE-0116](https://github.com/apple/swift-evolution/blob/master/proposals/0116-id-as-any.md):

0 commit comments

Comments
 (0)