@@ -9,7 +9,7 @@ from [`AbstractArray`](@ref). See the [manual section on the AbstractArray inter
99on implementing a custom array type.
1010
1111An array is a collection of objects stored in a multi-dimensional grid. In the most general case,
12- an array may contain objects of type ` Any ` . For most computational purposes, arrays should contain
12+ an array may contain objects of type [ ` Any ` ] ( @ref ) . For most computational purposes, arrays should contain
1313objects of a more specific type, such as [ ` Float64 ` ] ( @ref )  or [ ` Int32 ` ] ( @ref ) .
1414
1515In general, unlike many other technical computing languages, Julia does not expect programs to
@@ -23,7 +23,7 @@ sharing](https://en.wikipedia.org/wiki/Evaluation_strategy#Call_by_sharing)
2323while this prevents accidental modification by callees of a value in the caller,
2424it makes avoiding unwanted copying of arrays difficult. By convention, a
2525function name ending with a ` ! `  indicates that it will mutate or destroy the
26- value of one or more of its arguments (see, for example, [ ` sort ` ] ( @ref )  and [ ` sort! ` ] ( @ref ) .
26+ value of one or more of its arguments (see, for example, [ ` sort ` ] ( @ref )  and [ ` sort! ` ] ( @ref ) ) .
2727Callees must make explicit copies to ensure that they don't modify inputs that
2828they don't intend to change. Many non- mutating functions are implemented by
2929calling a function of the same name with an added ` ! `  at the end on an explicit
@@ -38,8 +38,8 @@ copy of the input, and returning that copy.
3838|  [ ` ndims(A) ` ] ( @ref )      |  the number of dimensions of ` A `                                                   | 
3939|  [ ` size(A) ` ] ( @ref )       |  a tuple containing the dimensions of ` A `                                          | 
4040|  [ ` size(A,n) ` ] ( @ref )     |  the size of ` A `  along dimension ` n `                                               | 
41- |  [ ` axes(A) ` ] ( @ref )    |  a tuple containing the valid indices of ` A `                                       | 
42- |  [ ` axes(A,n) ` ] ( @ref )  |  a range expressing the valid indices along dimension ` n `                          | 
41+ |  [ ` axes(A) ` ] ( @ref )        |  a tuple containing the valid indices of ` A `                                       | 
42+ |  [ ` axes(A,n) ` ] ( @ref )      |  a range expressing the valid indices along dimension ` n `                          | 
4343|  [ ` eachindex(A) ` ] ( @ref )  |  an efficient iterator for visiting each position in ` A `                           | 
4444|  [ ` stride(A,k) ` ] ( @ref )   |  the stride (linear index distance between adjacent elements) along dimension ` k `  | 
4545|  [ ` strides(A) ` ] ( @ref )    |  a tuple of the strides in each dimension                                         | 
0 commit comments