Skip to content

Commit 75e90c0

Browse files
fix docstring
1 parent b22cd2d commit 75e90c0

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
@@ -338,9 +338,8 @@ If called with multiple inputs, they are `zip`ped with the layers, thus `Paralle
338338
339339
```jldoctest
340340
julia> model = Chain(Dense(3, 5),
341-
Parallel(vcat, De
342-
print(io, ")")nse(5, 4), Chain(Dense(5, 7), Dense(7, 4))),
343-
Dense(8, 17));
341+
Parallel(vcat, Dense(5, 4), Chain(Dense(5, 7), Dense(7, 4))),
342+
Dense(8, 17));
344343
345344
julia> size(model(rand(3)))
346345
(17,)

0 commit comments

Comments
 (0)