From 1e7fb1d844d2df0c8100a78d6ef76b079ab31bb8 Mon Sep 17 00:00:00 2001 From: jkrch <63021020+jkrch@users.noreply.github.com> Date: Mon, 12 Oct 2020 09:50:41 +0200 Subject: [PATCH] doc: correct supertype of SparseMatrixCSC (#37991) --- stdlib/SparseArrays/docs/src/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/SparseArrays/docs/src/index.md b/stdlib/SparseArrays/docs/src/index.md index 61b521940b90a..286c46c8b8402 100644 --- a/stdlib/SparseArrays/docs/src/index.md +++ b/stdlib/SparseArrays/docs/src/index.md @@ -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)