Skip to content

Commit ce3c1ef

Browse files
brettcannonstevengj
authored andcommitted
Unify the "see ..." idiom (#22468)
1 parent 884373b commit ce3c1ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/manual/functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ loops cannot be merged because of the intervening `sort` function.
632632

633633
Finally, the maximum efficiency is typically achieved when the output array of a vectorized operation
634634
is *pre-allocated*, so that repeated calls do not allocate new arrays over and over again for
635-
the results ([Pre-allocating outputs](@ref):). A convenient syntax for this is `X .= ...`, which
635+
the results (see [Pre-allocating outputs](@ref)). A convenient syntax for this is `X .= ...`, which
636636
is equivalent to `broadcast!(identity, X, ...)` except that, as above, the `broadcast!` loop is
637637
fused with any nested "dot" calls. For example, `X .= sin.(Y)` is equivalent to `broadcast!(sin, X, Y)`,
638638
overwriting `X` with `sin.(Y)` in-place. If the left-hand side is an array-indexing expression,

0 commit comments

Comments
 (0)