@@ -21,7 +21,7 @@ Swift 3.0
21
21
been renamed ` MemoryLayout.size(ofValue:) ` , ` MemoryLayout.stride(ofValue:) ` ,
22
22
and ` MemoryLayout.alignment(ofValue:) ` .
23
23
24
- * [ SE-125 ] ( https://github.com/apple/swift-evolution/blob/master/proposals/0125-remove-nonobjectivecbase.md )
24
+ * [ SE-0125 ] ( https://github.com/apple/swift-evolution/blob/master/proposals/0125-remove-nonobjectivecbase.md )
25
25
26
26
The functions ` isUniquelyReferenced() ` and ` isUniquelyReferencedNonObjC() `
27
27
have been removed. The function ` isKnownUniquelyReferenced() ` should be called
@@ -53,7 +53,7 @@ Swift 3.0
53
53
54
54
```
55
55
56
- * [ SE-124 ] ( https://github.com/apple/swift-evolution/blob/master/proposals/0124-bitpattern-label-for-int-initializer-objectidentfier.md )
56
+ * [ SE-0124 ] ( https://github.com/apple/swift-evolution/blob/master/proposals/0124-bitpattern-label-for-int-initializer-objectidentfier.md )
57
57
58
58
The initializers on ` Int ` and ` UInt ` accepting an ` ObjectIdentifier ` now need
59
59
to be spelled with an explicit ` bitPattern ` label.
@@ -70,7 +70,7 @@ Swift 3.0
70
70
let i = Int (bitPattern : x)
71
71
```
72
72
73
- * [ SE-120 ] ( https://github.com/apple/swift-evolution/blob/master/proposals/0120-revise-partition-method.md )
73
+ * [ SE-0120 ] ( https://github.com/apple/swift-evolution/blob/master/proposals/0120-revise-partition-method.md )
74
74
75
75
The collection methods ` partition() ` and ` partition(isOrderedBefore:) ` have
76
76
been removed from Swift. They were replaced by the method ` partition(by:) `
@@ -88,7 +88,7 @@ Swift 3.0
88
88
}) ?? c.startIndex
89
89
```
90
90
91
- * [ SE-103 ] ( https://github.com/apple/swift-evolution/blob/master/proposals/0103-make-noescape-default.md )
91
+ * [ SE-0103 ] ( https://github.com/apple/swift-evolution/blob/master/proposals/0103-make-noescape-default.md )
92
92
93
93
Closure parameters are non-escaping by default, rather than explicitly being
94
94
annotated ` @noescape ` . Use ` @escaping ` to say that a closure parameter may
@@ -433,8 +433,8 @@ Swift 3.0
433
433
```
434
434
435
435
* [SE- 0081 ](https :// github.com/apple/swift-evolution/blob/master/proposals/0081-move-where-expression.md)
436
- " Move ' where' clause to end of declaration" is implemented, allowing you to
437
- write ' where ' clauses after the signature for a declaration, but before its
436
+ " Move ` where` clause to end of declaration" is implemented, allowing you to
437
+ write ` where ` clauses after the signature for a declaration, but before its
438
438
body. For example, before:
439
439
440
440
```swift
0 commit comments