Skip to content

Commit 0957f05

Browse files
committed
typo in docs
1 parent b456400 commit 0957f05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,9 @@ as in the usual matrix case: `transpose(A) * x` and `mul!(y, A', x)`, for instan
147147
### Slicing methods
148148

149149
Complete slicing, i.e., `A[:,j]`, `A[:,J]`, `A[i,:]`, `A[I,:]` and `A[:,:]` for `i`, `j`
150-
`Integer` and `I,J` `AbstractVector{<:Integer}` is generically available for any
150+
`Integer` and `I`, `J` `AbstractVector{<:Integer}` is generically available for any
151151
`A::LinearMap` subtype via application of `A` (or `A'` for (predominantly) horizontal
152152
slicing) to standard unit vectors of appropriate length. By complete slicing we refer
153153
two-dimensional Cartesian indexing where at least one of the "indices" is a colon. This is
154154
facilitated by overloads of `Base.getindex`. Partial slicing à la `A[I,J]` and scalar or
155-
linear indexing are _not_ supported for performance reasons.
155+
linear indexing are _not_ supported.

0 commit comments

Comments
 (0)