Skip to content

Commit 39eabba

Browse files
committed
fix documentation problem (TYPEDSIGNATURED does not work with methods parametrized
by more than one type)
1 parent 64128cd commit 39eabba

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

src/extendable.jl

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ end
2121

2222

2323
"""
24-
$(TYPEDSIGNATURES)
24+
$(SIGNATURES)
2525
2626
Create empty ExtendablSparseMatrix.
2727
"""
@@ -30,7 +30,7 @@ function ExtendableSparseMatrix{Tv,Ti}(m::Integer, n::Integer) where{Tv,Ti<:Inte
3030
end
3131

3232
"""
33-
$(TYPEDSIGNATURES)
33+
$(SIGNATURES)
3434
3535
Create empty ExtendablSparseMatrix.
3636
"""
@@ -57,7 +57,7 @@ ExtendableSparseMatrix(m::Integer, n::Integer)=ExtendableSparseMatrix{Float64,In
5757

5858

5959
"""
60-
$(TYPEDSIGNATURES)
60+
$(SIGNATURES)
6161
6262
Create ExtendablSparseMatrix from sparse matrix
6363
"""
@@ -132,15 +132,15 @@ function Base.getindex(M::ExtendableSparseMatrix{Tv,Ti},i::Integer, j::Integer)
132132
end
133133

134134
"""
135-
$(SIGNATURES)
135+
$(TYPEDSIGNATURES)
136136
137137
Size of ExtendableSparseMatrix.
138138
"""
139139
Base.size(E::ExtendableSparseMatrix) = (E.cscmatrix.m, E.cscmatrix.n)
140140

141141

142142
"""
143-
$(SIGNATURES)
143+
$(TYPEDSIGNATURES)
144144
145145
Number of nonzeros of ExtendableSparseMatrix.
146146
"""
@@ -249,7 +249,7 @@ end
249249

250250

251251
"""
252-
$(TYPEDSIGNATURES)
252+
$(SIGNATURES)
253253
254254
If there are new entries in extension, create new CSC matrix
255255
and reset extension.
@@ -265,7 +265,7 @@ end
265265

266266

267267
"""
268-
$(SIGNATURES)
268+
$(TYPEDSIGNATURES)
269269
270270
Flush and delegate to cscmatrix.
271271
"""
@@ -278,7 +278,7 @@ end
278278

279279

280280
"""
281-
$(SIGNATURES)
281+
$(TYPEDSIGNATURES)
282282
283283
Flush and delegate to cscmatrix.
284284
"""
@@ -289,7 +289,7 @@ end
289289

290290

291291
"""
292-
$(SIGNATURES)
292+
$(TYPEDSIGNATURES)
293293
294294
Flush and delegate to cscmatrix.
295295
"""
@@ -300,7 +300,7 @@ end
300300

301301

302302
"""
303-
$(SIGNATURES)
303+
$(TYPEDSIGNATURES)
304304
305305
Flush and delegate to cscmatrix.
306306
"""
@@ -311,7 +311,7 @@ end
311311

312312

313313
"""
314-
$(SIGNATURES)
314+
$(TYPEDSIGNATURES)
315315
316316
Flush and delegate to cscmatrix.
317317
"""
@@ -332,7 +332,7 @@ function LinearAlgebra.lu(E::ExtendableSparseMatrix)
332332
end
333333

334334
"""
335-
$(SIGNATURES)
335+
$(TYPEDSIGNATURES)
336336
337337
Delegating Matrix multiplication
338338
"""
@@ -343,7 +343,7 @@ end
343343

344344

345345
"""
346-
$(SIGNATURES)
346+
$(TYPEDSIGNATURES)
347347
348348
Delegating Matrix ldiv
349349
"""
@@ -353,7 +353,7 @@ function LinearAlgebra.ldiv!(r::AbstractArray{T,1} where T, E::ExtendableSparse
353353
end
354354

355355
"""
356-
$(SIGNATURES)
356+
$(TYPEDSIGNATURES)
357357
358358
Delegating Matrix multiplication
359359
"""
@@ -364,7 +364,7 @@ end
364364

365365

366366
"""
367-
$(SIGNATURES)
367+
$(TYPEDSIGNATURES)
368368
369369
Delegating Matrix ldiv
370370
"""

0 commit comments

Comments
 (0)