Skip to content

Commit a77af6f

Browse files
authored
Fix type -> eltype in docstrings (#129)
* Fix type -> eltype in docstrings * Update BandedBlockBandedMatrix.jl Update docstring of `BandedBlockBandedMatrix` * Update index.md Fix header
1 parent 02565b8 commit a77af6f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# BandedMatrices.jl Documentation
1+
# BlockBandedMatrices.jl Documentation
22

33

44
## Creating block-banded and banded-block-banded matrices

src/BandedBlockBandedMatrix.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ BandedBlockBandedMatrix{T}(::UndefInitializer, rblocksizes::AbstractVector{Int},
7070
BandedBlockBandedMatrix{T}(M::Union{UndefInitializer,UniformScaling,AbstractMatrix},
7171
rows, cols, (l, u), (λ, μ))
7272
73-
returns a `sum(rows)`×`sum(cols)` banded-block-banded matrix `A` of
74-
type `T` with block-bandwidths `(l,u)` and where `A[Block(K,J)]` is a
73+
returns a `sum(rows)`×`sum(cols)` banded-block-banded matrix `A` having elements of
74+
type `T`, with block-bandwidths `(l,u)` and where `A[Block(K,J)]` is a
7575
`BandedMatrix{T}` of size `rows[K]`×`cols[J]` with bandwidths `(λ,μ)`.
7676
7777
# Examples

src/BlockSkylineMatrix.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ const BlockBandedMatrix{T} = BlockSkylineMatrix{T, Vector{T}, BlockBandedSizes}
139139
BlockSkylineMatrix{T,LL,UU}(M::Union{UndefInitializer,UniformScaling,AbstractMatrix},
140140
rows, cols, (l::LL, u::UU))
141141
142-
returns a `sum(rows)`×`sum(cols)` block-banded matrix `A` of type `T`
142+
returns a `sum(rows)`×`sum(cols)` block-banded matrix `A` having elements of type `T`,
143143
with block-bandwidths `(l,u)` and where `A[Block(K,J)]` is a
144144
`Matrix{T}` of size `rows[K]`×`cols[J]`.
145145

0 commit comments

Comments
 (0)