Skip to content

Commit f95960c

Browse files
oxinaboxdevmotion
andauthored
Apply suggestions from code review
Co-authored-by: David Widmann <[email protected]>
1 parent d2028ec commit f95960c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DataStructures.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module DataStructures
2525
export AbstractHeap, compare, extract_all!, extract_all_rev!
2626
export BinaryHeap, BinaryMinHeap, BinaryMaxHeap, nlargest, nsmallest
2727
export MutableBinaryHeap, MutableBinaryMinHeap, MutableBinaryMaxHeap
28-
export heapify!, heapify, heappop!, heappush!, isheap, top
28+
export heapify!, heapify, heappop!, heappush!, isheap
2929
export BinaryMinMaxHeap, popmin!, popmax!, popall!
3030

3131
export Trie, subtrie, keys_with_prefix, partial_path
@@ -112,5 +112,5 @@ module DataStructures
112112
include("splay_tree.jl")
113113

114114
include("deprecations.jl")
115-
@deprecate top(h::BinaryHeap) = first(h)
115+
@deprecate top(x) = first(h)
116116
end

0 commit comments

Comments
 (0)