Skip to content

Commit d655402

Browse files
authored
doc: fix typo in interface manual section (#44703)
1 parent fc9c280 commit d655402

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/manual/interfaces.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ provides a traits-based mechanism to enable efficient generic code for all array
258258

259259
This distinction determines which scalar indexing methods the type must define. `IndexLinear()`
260260
arrays are simple: just define `getindex(A::ArrayType, i::Int)`. When the array is subsequently
261-
indexed with a multidimensional set of indices, the fallback `getindex(A::AbstractArray, I...)()`
261+
indexed with a multidimensional set of indices, the fallback `getindex(A::AbstractArray, I...)`
262262
efficiently converts the indices into one linear index and then calls the above method. `IndexCartesian()`
263263
arrays, on the other hand, require methods to be defined for each supported dimensionality with
264264
`ndims(A)` `Int` indices. For example, [`SparseMatrixCSC`](@ref) from the `SparseArrays` standard

0 commit comments

Comments
 (0)