Skip to content

Commit

Permalink
doc: correct supertype of SparseMatrixCSC (JuliaLang#37991)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkrch committed Oct 12, 2020
1 parent 3bfcb74 commit 1e7fb1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/SparseArrays/docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type of the stored values, and `Ti` is the integer type for storing column point
row indices. The internal representation of `SparseMatrixCSC` is as follows:

```julia
struct SparseMatrixCSC{Tv,Ti<:Integer} <: AbstractSparseMatrix{Tv,Ti}
struct SparseMatrixCSC{Tv,Ti<:Integer} <: AbstractSparseMatrixCSC{Tv,Ti}
m::Int # Number of rows
n::Int # Number of columns
colptr::Vector{Ti} # Column j is in colptr[j]:(colptr[j+1]-1)
Expand Down

0 comments on commit 1e7fb1d

Please sign in to comment.