Skip to content

Commit 997ad76

Browse files
committed
Fix function names in docstrings
1 parent 01021c9 commit 997ad76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/deque.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ num_blocks(q::Deque) = q.nblocks
9494
Base.eltype(::Type{Deque{T}}) where T = T
9595

9696
"""
97-
front(q::Deque)
97+
first(q::Deque)
9898
9999
Returns the first element of the deque `q`.
100100
"""
@@ -105,7 +105,7 @@ function first(q::Deque)
105105
end
106106

107107
"""
108-
back(q::Deque)
108+
last(q::Deque)
109109
110110
Returns the last element of the deque `q`.
111111
"""

0 commit comments

Comments
 (0)