Merge pull request #863 from Naba7/fix_typo

removed extra parenthesis
This commit is contained in:
Dhairya Gandhi 2019-09-14 11:43:20 +05:30 committed by GitHub
commit 29eae312b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@ Consider a [simple linear regression](../models/basics.md). We create some dummy
```julia
using Flux
W = rand(2, 5))
W = rand(2, 5)
b = rand(2)
predict(x) = (W * x) .+ b