Update DifferentiableProgrammingImplementation.md

This commit is contained in:
Philip Turner
2021-12-07 18:16:48 -05:00
committed by GitHub
parent 5a5d727528
commit ef9fb888d4

View File

@@ -220,7 +220,7 @@ Swift supports ergonomic implicit function conversions:
```swift
// Takes a differentiable function argument.
func f(_ x: @differentiable (Float) -> Float) {}
func f(_ x: @differentiable (Float) -> Float) { }
// Calling `f` with a function declaration reference triggers an implicit
// `@differentiable` function type conversion.