We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 334f840 + 3125e6c commit 294c3ceCopy full SHA for 294c3ce
docs/src/deque.md
@@ -12,7 +12,7 @@ using an [unrolled linked list](https://en.wikipedia.org/wiki/Unrolled_linked_li
12
be used as a deque. However, the `Deque` type in DataStructures.jl is
13
implemented as a list of contiguous blocks (default size = 1 kilo-byte). As a
14
Deque grows, new blocks are created and linked to existing blocks.
15
- This apprach prevents copying operations that take place when growing a `Vector`.
+ This approach prevents copying operations that take place when growing a `Vector`.
16
17
Benchmark shows that the performance of `Deque` is comparable to
18
`Vector` on `push!`, but is noticeably faster on `pushfirst!` (by about
0 commit comments