Skip to content

Commit

Permalink
Tweak CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
slavapestov committed Mar 18, 2020
1 parent f6187e5 commit 65980bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ Swift Next

* [SR-75][]:

Unapplied references to protocol methods methods are now supported. Previously this
Unapplied references to protocol methods are now supported. Previously this
only worked for methods defined in structs, enums and classes.

```swift
protocol Cat {
func play(catToy: Toy)
}

let fn = Cat.play
let fn = Cat.play(catToy:)
fn(myCat)(myToy)
```

Expand Down

0 comments on commit 65980bd

Please sign in to comment.