Skip to content

Commit 294c3ce

Browse files
authored
Merge pull request JuliaCollections#847 from mananbordia/master
Fix typo in Deque documentation
2 parents 334f840 + 3125e6c commit 294c3ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/deque.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ using an [unrolled linked list](https://en.wikipedia.org/wiki/Unrolled_linked_li
1212
be used as a deque. However, the `Deque` type in DataStructures.jl is
1313
implemented as a list of contiguous blocks (default size = 1 kilo-byte). As a
1414
Deque grows, new blocks are created and linked to existing blocks.
15-
This apprach prevents copying operations that take place when growing a `Vector`.
15+
This approach prevents copying operations that take place when growing a `Vector`.
1616

1717
Benchmark shows that the performance of `Deque` is comparable to
1818
`Vector` on `push!`, but is noticeably faster on `pushfirst!` (by about

0 commit comments

Comments
 (0)