Skip to content

Commit 36cd5a7

Browse files
committed
Fixup
1 parent 05c6711 commit 36cd5a7

File tree

2 files changed

+2
-18
lines changed

2 files changed

+2
-18
lines changed

checklist.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

src/KWayMerges.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ same as for `Base.sort!`.
6161
```jldoctest
6262
julia> arrs = [[1,6], [2], [5,7], [3,4,8]];
6363
64-
julia> it = KWayMerger(arrs);
64+
julia> it = kway_merge(arrs);
6565
6666
julia> first(it, 2)
6767
2-element Vector{@NamedTuple{from_iter::Int64, value::Int64}}:
@@ -161,7 +161,7 @@ iterator is empty.
161161
162162
# Examples
163163
```jldoctest
164-
julia> it = KWayMerger([[3, 4], [2, 7]]);
164+
julia> it = kway_merge([[3, 4], [2, 7]]);
165165
166166
julia> peek(it)
167167
(from_iter = 2, value = 2)

0 commit comments

Comments
 (0)