Skip to content

Commit 3e19a03

Browse files
authored
Merge pull request #4678 from erica/README1
Minor CHANGELOG fixes, including code voice instead of single quotes …
2 parents 3525584 + 2df06f8 commit 3e19a03

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Swift 3.0
2121
been renamed `MemoryLayout.size(ofValue:)`, `MemoryLayout.stride(ofValue:)`,
2222
and `MemoryLayout.alignment(ofValue:)`.
2323

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)
2525

2626
The functions `isUniquelyReferenced()` and `isUniquelyReferencedNonObjC()`
2727
have been removed. The function `isKnownUniquelyReferenced()` should be called
@@ -53,7 +53,7 @@ Swift 3.0
5353

5454
```
5555

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)
5757

5858
The initializers on `Int` and `UInt` accepting an `ObjectIdentifier` now need
5959
to be spelled with an explicit `bitPattern` label.
@@ -70,7 +70,7 @@ Swift 3.0
7070
let i = Int(bitPattern: x)
7171
```
7272

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)
7474

7575
The collection methods `partition()` and `partition(isOrderedBefore:)` have
7676
been removed from Swift. They were replaced by the method `partition(by:)`
@@ -88,7 +88,7 @@ Swift 3.0
8888
}) ?? c.startIndex
8989
```
9090

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)
9292

9393
Closure parameters are non-escaping by default, rather than explicitly being
9494
annotated `@noescape`. Use `@escaping` to say that a closure parameter may
@@ -433,8 +433,8 @@ Swift 3.0
433433
```
434434

435435
* [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
438438
body. For example, before:
439439

440440
```swift

0 commit comments

Comments
 (0)