Skip to content

Commit 7c980c6

Browse files
authored
noteworthy-differences: remove mention of pre-1.0 "change of syntax" (#36068)
This mention of how the syntax has changed is not relevant for current newcomers-from-c(++), and it makes Julia look a bit unstable. Also add a reference to array construction manual.
1 parent 59a315c commit 7c980c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/manual/noteworthy-differences.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ For users coming to Julia from R, these are some noteworthy differences:
254254

255255
* Julia arrays are indexed with square brackets, and can have more than one dimension `A[i,j]`.
256256
This syntax is not just syntactic sugar for a reference to a pointer or address as in C/C++. See
257-
the Julia documentation for the syntax for array construction (it has changed between versions).
257+
[the manual entry about array construction](@ref man-multi-dim-arrays).
258258
* In Julia, indexing of arrays, strings, etc. is 1-based not 0-based.
259259
* Julia arrays are not copied when assigned to another variable. After `A = B`, changing elements of `B` will modify `A`
260260
as well. Updating operators like `+=` do not operate in-place, they are equivalent to `A = A + B`

0 commit comments

Comments
 (0)