Skip to content

Commit

Permalink
Remove superfluous vcat in dot syntax docs (JuliaLang#46334)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnoStrouwen authored and pcjentsch committed Aug 18, 2022
1 parent 54450f7 commit d4e0b9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/src/manual/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -1097,7 +1097,7 @@ they are equivalent to `broadcast` calls and are fused with other nested "dot" c

You can also combine dot operations with function chaining using [`|>`](@ref), as in this example:
```jldoctest
julia> [1:5;] .|> [x->x^2, inv, x->2*x, -, isodd]
julia> 1:5 .|> [x->x^2, inv, x->2*x, -, isodd]
5-element Vector{Real}:
1
0.5
Expand Down

0 comments on commit d4e0b9c

Please sign in to comment.