Skip to content

Commit a6d0b65

Browse files
Merge pull request #163 from hyrodium/fix/documenter_v1
Update for Documenter v1
2 parents e34de43 + a9734fc commit a6d0b65

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
33

44
[compat]
5-
Documenter = "0.27"
5+
Documenter = "1"

src/utilities.jl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -287,12 +287,12 @@ types.
287287
288288
```jldoctest; setup = :(using DocStringExtensions)
289289
julia> DocStringExtensions.find_tuples(Tuple{String,Number,Int})
290-
1-element Array{DataType,1}:
291-
Tuple{String,Number,Int64}
290+
1-element Vector{DataType}:
291+
Tuple{String, Number, Int64}
292292
293293
julia> DocStringExtensions.find_tuples(Tuple{T} where T <: Integer)
294-
1-element Array{DataType,1}:
295-
Tuple{T<:Integer}
294+
1-element Vector{UnionAll}:
295+
Tuple{T} where T<:Integer
296296
297297
julia> s = Union{
298298
Tuple{Int64},
@@ -303,12 +303,12 @@ julia> s = Union{
303303
} where U where T;
304304
305305
julia> DocStringExtensions.find_tuples(s)
306-
5-element Array{DataType,1}:
306+
5-element Vector{Type}:
307307
Tuple{Int64}
308-
Tuple{U}
309-
Tuple{T}
310-
Tuple{Int64,T}
311-
Tuple{Int64,T,U}
308+
Tuple{U} where U
309+
Tuple{T} where T
310+
Tuple{Int64, T} where T
311+
Tuple{Int64, T, U} where {T, U}
312312
```
313313
"""
314314
function find_tuples(typesig)

0 commit comments

Comments
 (0)