Skip to content

Commit 8be77a2

Browse files
authored
Fix documentation reference for sparse function
Corrected the reference link format for the sparse function in the documentation.
1 parent 23afe3b commit 8be77a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/SymSparseMatrixCSR.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ end
2121
2222
Create a `SymSparseMatrixCSR` with `Bi`-based indexing (1 by default)
2323
from the same `args...` as one constructs a `SparseMatrixCSC`
24-
with the [`sparse`](@ref) function. If `symmetrize == false` (the default)
24+
with the [`sparse`](@extref) function. If `symmetrize == false` (the default)
2525
the given arguments should only describe the upper triangle
2626
of the matrix (including non zero diagonal values). If `symmetrize == true`
2727
a non symmetric input is accepted and it will be symmetrized in-place
@@ -209,4 +209,4 @@ end
209209

210210
function Base.copy(a::SymSparseMatrixCSR{Bi,T,Ti}) where {Bi,T,Ti}
211211
SymSparseMatrixCSR{Bi,T,Ti}(copy(a.uppertrian))
212-
end
212+
end

0 commit comments

Comments
 (0)