diff --git a/stdlib/SparseArrays/src/sparsematrix.jl b/stdlib/SparseArrays/src/sparsematrix.jl index baac93ca15b2f..903294c6920fd 100644 --- a/stdlib/SparseArrays/src/sparsematrix.jl +++ b/stdlib/SparseArrays/src/sparsematrix.jl @@ -9,7 +9,9 @@ SparseMatrixCSC{Tv,Ti<:Integer} <: AbstractSparseMatrix{Tv,Ti} Matrix type for storing sparse matrices in the -[Compressed Sparse Column](@ref man-csc) format. +[Compressed Sparse Column](@ref man-csc) format. The standard way +of constructing SparseMatrixCSC is through the [`sparse`](@ref) function. +See also [`spzeros`](@ref), [`spdiagm`](@ref) and [`sprand`](@ref). """ struct SparseMatrixCSC{Tv,Ti<:Integer} <: AbstractSparseMatrix{Tv,Ti} m::Int # Number of rows