Skip to content

Commit d27ed8f

Browse files
authored
doc/src/manual/arrays.md: fix typo (#52502)
Mix-up between `I_k` and `i_k`. I bolded the wrong part.
1 parent eba10dd commit d27ed8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/manual/arrays.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ overwritten with the value of `X`, [`convert`](@ref)ing to the
603603
If any index `I_k` is itself an array, then the right hand side `X` must also be an
604604
array with the same shape as the result of indexing `A[I_1, I_2, ..., I_n]` or a vector with
605605
the same number of elements. The value in location `I_1[i_1], I_2[i_2], ..., I_n[i_n]` of
606-
`A` is overwritten with the value `X[I_1, I_2, ..., I_n]`, converting if necessary. The
606+
`A` is overwritten with the value `X[i_1, i_2, ..., i_n]`, converting if necessary. The
607607
element-wise assignment operator `.=` may be used to [broadcast](@ref Broadcasting) `X`
608608
across the selected locations:
609609

0 commit comments

Comments
 (0)