Skip to content

Commit cb0495f

Browse files
authored
Use Documenter v1 to build docs (#323)
1 parent 3d8f17e commit cb0495f

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ BlockArrays = "8e7c35d0-a365-5155-bbbb-fb81a777f24e"
33
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
44

55
[compat]
6-
Documenter = "0.27"
6+
Documenter = "1"

docs/make.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ makedocs(
1919
"lib/public.md",
2020
"lib/internals.md"
2121
]
22-
]
22+
],
23+
warnonly = :missing_docs,
2324
)
2425

2526
# Deploy built documentation from Travis.

docs/src/lib/public.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ Base.popfirst!
6666

6767
```@docs
6868
PseudoBlockArray
69+
PseudoBlockVector
70+
PseudoBlockMatrix
6971
Base.resize!
7072
```
7173

src/blockarray.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ Base.reshape(block_array::BlockArray, dims::Tuple{Vararg{Union{Int,Colon}}}) =
484484
reshape(PseudoBlockArray(block_array), dims)
485485

486486
"""
487-
resize!(a::BlockVector, N::Block) -> PseudoBlockVector
487+
resize!(a::BlockVector, N::Block) -> PseudoBlockVector
488488
489489
Resize `a` to contain the first `N` blocks, returning a new `BlockVector` sharing
490490
memory with `a`. If `N` is smaller than the current

src/pseudo_blockarray.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ julia> PseudoBlockVector(A, [3,2,1])
9393
5
9494
9595
6
96-
```
96+
```
9797
"""
9898
const PseudoBlockVector{T} = PseudoBlockArray{T, 1}
9999
const PseudoBlockVecOrMat{T} = Union{PseudoBlockMatrix{T}, PseudoBlockVector{T}}
@@ -307,7 +307,7 @@ function Base.showarg(io::IO, A::PseudoBlockArray, toplevel::Bool)
307307
end
308308
end
309309
"""
310-
resize!(a::PseudoBlockVector, N::Block) -> PseudoBlockVector
310+
resize!(a::PseudoBlockVector, N::Block) -> PseudoBlockVector
311311
312312
Resize `a` to contain the first `N` blocks, returning a new `PseudoBlockVector` sharing
313313
memory with `a`. If `N` is smaller than the current

0 commit comments

Comments
 (0)