fix docstring example indentation as well

This commit is contained in:
Martijn Visser 2020-03-01 15:19:22 +01:00
parent 32e0aa9fcb
commit f4365dab94
1 changed files with 3 additions and 4 deletions

View File

@ -484,7 +484,6 @@ Discount the learning rate `eta` by a multiplicative factor `decay` every `decay
To apply exponential decay to an optimiser:
```julia
Optimiser(ExpDecay(..), Opt(..))
opt = Optimiser(ExpDecay(), ADAM())
```
"""