Skip to content

Commit

Permalink
improve docstring of SparseMatrixCSC (#30689)
Browse files Browse the repository at this point in the history

(cherry picked from commit 0a6935f)
  • Loading branch information
abraunst authored and KristofferC committed Feb 11, 2019
1 parent 3207490 commit a7f50dc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion stdlib/SparseArrays/src/sparsematrix.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a7f50dc

Please sign in to comment.