Update docs/DifferentiableProgrammingImplementation.md

Co-authored-by: Saleem Abdulrasool <compnerd@compnerd.org>
This commit is contained in:
Philip Turner
2021-12-07 03:46:49 -08:00
committed by GitHub
parent 012554ef42
commit 451fc290cf

View File

@@ -425,7 +425,7 @@ In the sections below, let us dig into derivative code generation for the follow
```swift
@differentiable
func foo(_ x: Float) -> Float {
func f(_ x: Float) -> Float {
return sin(x) * cos(x)
}