Skip to content

Commit dcadaf4

Browse files
fix docstring
1 parent 0031340 commit dcadaf4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/layers/basic.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -389,9 +389,8 @@ If called with multiple inputs, they are `zip`ped with the layers, thus `Paralle
389389
390390
```jldoctest
391391
julia> model = Chain(Dense(3, 5),
392-
Parallel(vcat, De
393-
print(io, ")")nse(5, 4), Chain(Dense(5, 7), Dense(7, 4))),
394-
Dense(8, 17));
392+
Parallel(vcat, Dense(5, 4), Chain(Dense(5, 7), Dense(7, 4))),
393+
Dense(8, 17));
395394
396395
julia> size(model(rand(3)))
397396
(17,)

0 commit comments

Comments
 (0)